├── .clang-format ├── .dockerignore ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── codeql │ └── codeql-config.yml ├── dependabot.yml └── workflows │ ├── build-test.yml │ ├── codeql.yml │ ├── conflict-check.yml │ ├── deploy-pages.yml │ ├── docker-build.yml │ ├── docker-test.yml │ ├── release-publish.yml │ └── static-checks.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── .reuse └── dep5 ├── .travis.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── LICENSES ├── BSD-3-Clause.txt ├── FSFAP.txt ├── GPL-2.0-only.txt ├── LGPL-2.0-only.txt ├── LGPL-2.1-only.txt ├── MIT.txt └── W3C-19980720.txt ├── NOTICES ├── NOTICES-THIRDPARTY.html ├── NOTICES.spdx ├── README.md ├── Vagrantfile ├── cmake ├── FoPackPatch.cmake ├── FoPackaging.cmake ├── FoUtilities.cmake ├── FoVersionFile.cmake ├── SetDefaults.cmake ├── TestInstall.make.in ├── VERSION.in ├── VERSION.in.license └── cmake_uninstall.cmake.in ├── debian ├── README.Debian ├── changelog ├── common │ ├── conffiles │ ├── fossology-common.README.Debian │ ├── fossology-common.docs │ ├── fossology-common.lintian-overrides │ ├── postinst │ └── postrm ├── compat ├── control ├── copyright ├── db │ ├── conffiles │ ├── postinst │ └── postrm ├── fossology.postinst ├── fossology.postrm ├── fossology │ ├── postinst │ └── postrm ├── notes ├── rules ├── scheduler │ ├── conffiles │ ├── fossology-scheduler.lintian-overrides │ ├── fossology-scheduler.logrotate │ ├── postinst │ └── postrm ├── source │ ├── format │ └── lintian-overrides ├── upstream │ └── metadata ├── watch └── web │ └── postinst ├── docker-compose.yml ├── docker-entrypoint.sh ├── fossology_doxygen.conf ├── install ├── CMakeLists.txt ├── INSTALL ├── INSTALL.multi ├── db │ ├── db.cron.in │ ├── dbcreate.in │ ├── dbmigrate_1.4-2.0.php │ ├── dbmigrate_2.0-2.1.php │ ├── dbmigrate_2.0-2.5-pre.php │ ├── dbmigrate_2.1-2.2.php │ ├── dbmigrate_2.5-2.6.php │ ├── dbmigrate_3.3-3.4.php │ ├── dbmigrate_3.5-3.6.php │ ├── dbmigrate_3.6-3.7.php │ ├── dbmigrate_3.7-3.8.php │ ├── dbmigrate_4.0-4.1.php │ ├── dbmigrate_4.2-4.3.php │ ├── dbmigrate_bulk_license.php │ ├── dbmigrate_change_db_encoding.php.in │ ├── dbmigrate_clearing-event.php │ ├── dbmigrate_copyright-author.php │ ├── dbmigrate_copyright-event.php │ ├── dbmigrate_multiple_copyright_decisions.php │ ├── dbmigrate_pfile_calculate_sha256.php.in │ ├── dbmigrate_real-parent.php │ ├── export_license_ref.php │ ├── fo_mapping_license.php │ ├── fossologyinit.sql │ ├── gitpod-fossologyinit.sql │ ├── instance_uuid.php │ ├── licenseRef.json │ ├── licenseRef.json.license │ ├── migratetest.php │ ├── resequence_author_table.php │ └── sanity_check.php ├── defconf │ ├── Db.conf.in │ ├── Db.conf.in.license │ ├── fossology.conf.in │ ├── samplefooter.txt │ ├── samplefooter.txt.license │ ├── sampleheader.txt │ └── sampleheader.txt.license ├── easy-install ├── fo-apache.conf ├── fo-install-pythondeps ├── fo-postinstall.in ├── fo_dbcheck.php ├── fossdash │ ├── fossdash-publish.py.in │ ├── fossdash_dep_install.sh │ └── fossdash_metrics.yml ├── fossinit-common.php ├── fossinit.php ├── scripts │ ├── install-ninka.sh │ ├── install-spdx-tools.sh │ ├── pgsql-conf-fix.sh │ ├── php-conf-fix.sh │ ├── readme │ └── setshm.sh └── src-install-apache-example.conf ├── pbconf ├── Vagrantfile ├── ci-scripts │ ├── fo-dockerbuild-pb.sh │ └── fo-installdeps-pb.sh ├── fossology.pb ├── fossology.yml ├── fossology │ ├── deb │ │ ├── README.Debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── fossology-common.README.Debian │ │ ├── fossology-common.docs │ │ ├── fossology-common.lintian-overrides │ │ ├── fossology-common.postinst │ │ ├── fossology-common.postrm │ │ ├── fossology-db.postinst │ │ ├── fossology-db.postrm │ │ ├── fossology-scheduler.logrotate │ │ ├── fossology-scheduler.postinst │ │ ├── fossology-scheduler.postrm │ │ ├── fossology-web.postinst │ │ ├── fossology.postinst │ │ ├── fossology.postrm │ │ ├── notes │ │ ├── rules │ │ └── source │ │ │ └── format │ ├── pbve.pre │ └── rpm │ │ └── fossology.spec ├── pbcl └── pbfilter │ ├── all.pbf │ ├── all.yml │ ├── centos-6.pbf │ ├── centos-6.yml │ ├── centos-7.pbf │ ├── centos-7.yml │ ├── debian-6.pbf │ ├── debian-6.yml │ ├── debian-7.pbf │ ├── debian-7.yml │ ├── debian-8.pbf │ ├── debian-8.yml │ ├── debian-9.pbf │ ├── debian-9.yml │ ├── fedora-15.pbf │ ├── fedora-15.yml │ ├── fedora-17.pbf │ ├── fedora-17.yml │ ├── fedora-18.pbf │ ├── fedora-18.yml │ ├── fedora.pbf │ ├── fedora.yml │ ├── md.pbf │ ├── md.yml │ ├── rhel.pbf │ ├── rhel.yml │ ├── rpm.pbf │ ├── rpm.yml │ ├── ubuntu-12.04.pbf │ ├── ubuntu-12.10.pbf │ ├── ubuntu-13.04.pbf │ ├── ubuntu-13.10.pbf │ ├── ubuntu-14.04.pbf │ ├── ubuntu-15.04.pbf │ ├── ubuntu-15.10.pbf │ ├── ubuntu-16.04.pbf │ ├── ubuntu-16.10.pbf │ ├── ubuntu-17.04.pbf │ ├── ubuntu.pbf │ └── ubuntu.yml ├── src ├── CMakeLists.txt ├── adj2nest │ ├── CMakeLists.txt │ ├── adj2nest.conf │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── adj2nest.c │ │ └── readme.txt │ └── ui │ │ └── agent_adj2nest.php ├── buckets │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── buckets.c │ │ ├── buckets.h │ │ ├── child.c │ │ ├── container.c │ │ ├── inits.c │ │ ├── leaf.c │ │ ├── liccache.c │ │ ├── liccache.h │ │ ├── match.c │ │ ├── validate.c │ │ ├── walk.c │ │ └── write.c │ ├── buckets.conf │ └── ui │ │ ├── admin-bucket-pool.php │ │ ├── agent-bucket.php │ │ ├── ajax-filebucket.php │ │ ├── bucket-diff.php │ │ ├── ui-buckets.php │ │ └── ui-list-bucket-files.php ├── cli │ ├── CMakeLists.txt │ ├── acme_review.php │ ├── cp2foss.php │ ├── cp2foss.pod │ ├── exportLicenseRefUsingSPDX.php │ ├── fo_antelink.php │ ├── fo_bucket_list.php │ ├── fo_chmod.php │ ├── fo_copyright_list.php │ ├── fo_folder.php │ ├── fo_import_licenses.php │ ├── fo_monk_license_list.php │ ├── fo_ninka_license_list.php │ ├── fo_nomos_license_list.php │ ├── fo_tagfile.php │ ├── fo_tagfoss.php │ ├── fo_usergroup.php │ ├── fo_wrapper.php.in │ ├── foss-scheduler.pod │ ├── fossjobs.php │ ├── fossjobs.pod │ ├── fossupload_status.php │ ├── mkpod │ ├── schema-export.php │ └── tests │ │ ├── 1stest.php │ │ ├── ReadMe │ │ ├── TestPlan.txt │ │ ├── all_tests.php │ │ ├── dashR.php │ │ ├── desc.php │ │ ├── duplicate-Upfolder.php │ │ ├── install │ │ ├── parameters.php │ │ ├── test_common.php │ │ ├── test_cp2foss.php │ │ ├── test_fo_copyright_list.php │ │ ├── test_fo_nomos_license_list.php │ │ ├── test_fossjobs.php │ │ ├── test_oneshot.php │ │ └── tests.xml ├── clixml │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── clixml.php │ │ ├── services.php │ │ ├── template │ │ │ ├── clixml-document.xml.twig │ │ │ └── clixml-file.xml.twig │ │ └── version.php.in │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ └── Functional │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── fo_report.sql │ │ │ └── schedulerTest.php │ ├── clixml.conf │ └── ui │ │ ├── CliXmlAgentPlugin.php │ │ └── CliXmlGeneratorUi.php ├── compatibility │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── CompatibilityAgent.cc │ │ ├── CompatibilityAgent.hpp │ │ ├── CompatibilityDatabaseHandler.cc │ │ ├── CompatibilityDatabaseHandler.hpp │ │ ├── CompatibilityState.cc │ │ ├── CompatibilityState.hpp │ │ ├── CompatibilityStatus.hpp │ │ ├── CompatibilityUtils.cc │ │ ├── CompatibilityUtils.hpp │ │ ├── compatibility.cc │ │ └── compatibility.hpp │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── SchedulerTestRunnerScheduler.php │ │ │ ├── cli_test.sh │ │ │ ├── schedulerTest.php │ │ │ └── shunit2 │ │ ├── Unit │ │ │ ├── run_tests.cc │ │ │ ├── test_compatibility.cc │ │ │ └── test_utils.cc │ │ └── testdata │ │ │ ├── comp-rules-test.yaml │ │ │ ├── compatible-output.json │ │ │ ├── compatible-output.json.license │ │ │ ├── incompatible-output.json │ │ │ ├── incompatible-output.json.license │ │ │ ├── license-map.csv │ │ │ └── license-map.csv.license │ ├── compatibility.conf │ ├── mod_deps │ └── ui │ │ └── agent-compatibility.php ├── composer.json ├── composer.json.in ├── composer.json.in.license ├── composer.json.license ├── composer.lock ├── composer.lock.license ├── copyright │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── FossologyUnicodeClean.cc │ │ ├── FossologyUnicodeClean.hpp │ │ ├── cleanEntries.cc │ │ ├── cleanEntries.hpp │ │ ├── copyright.cc │ │ ├── copyright.conf │ │ ├── copyright.hpp │ │ ├── copyrightState.cc │ │ ├── copyrightState.hpp │ │ ├── copyrightUtils.cc │ │ ├── copyrightUtils.hpp │ │ ├── copyscan.cc │ │ ├── copyscan.hpp │ │ ├── database.cc │ │ ├── database.hpp │ │ ├── directoryScan.cc │ │ ├── directoryScan.hpp │ │ ├── ecc.conf │ │ ├── identity.hpp │ │ ├── ipra.conf │ │ ├── keyword.conf │ │ ├── regex.hpp │ │ ├── regexConfParser.cc │ │ ├── regexConfParser.hpp │ │ ├── regexConfProvider.cc │ │ ├── regexConfProvider.hpp │ │ ├── regscan.cc │ │ ├── regscan.hpp │ │ ├── scanners.cc │ │ └── scanners.hpp │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── cli_test.sh │ │ │ ├── schedulerTest.php │ │ │ └── shunit2 │ │ ├── Unit │ │ │ ├── run_tests.cc │ │ │ ├── test_accuracy.cc │ │ │ ├── test_regex.cc │ │ │ ├── test_regexConfProvider.cc │ │ │ └── test_scanners.cc │ │ └── testdata │ │ │ ├── testdata0 │ │ │ ├── testdata0_raw │ │ │ ├── testdata1 │ │ │ ├── testdata10 │ │ │ ├── testdata100 │ │ │ ├── testdata100_raw │ │ │ ├── testdata101 │ │ │ ├── testdata101_raw │ │ │ ├── testdata102 │ │ │ ├── testdata102_raw │ │ │ ├── testdata103 │ │ │ ├── testdata103_raw │ │ │ ├── testdata104 │ │ │ ├── testdata104_raw │ │ │ ├── testdata105 │ │ │ ├── testdata105_raw │ │ │ ├── testdata106 │ │ │ ├── testdata106_raw │ │ │ ├── testdata107 │ │ │ ├── testdata107_raw │ │ │ ├── testdata108 │ │ │ ├── testdata108_raw │ │ │ ├── testdata109 │ │ │ ├── testdata109_raw │ │ │ ├── testdata10_raw │ │ │ ├── testdata11 │ │ │ ├── testdata110 │ │ │ ├── testdata110_raw │ │ │ ├── testdata111 │ │ │ ├── testdata111_raw │ │ │ ├── testdata112 │ │ │ ├── testdata112_raw │ │ │ ├── testdata113 │ │ │ ├── testdata113_raw │ │ │ ├── testdata114 │ │ │ ├── testdata114_raw │ │ │ ├── testdata115 │ │ │ ├── testdata115_raw │ │ │ ├── testdata116 │ │ │ ├── testdata116_raw │ │ │ ├── testdata117 │ │ │ ├── testdata117_raw │ │ │ ├── testdata118 │ │ │ ├── testdata118_raw │ │ │ ├── testdata119 │ │ │ ├── testdata119_raw │ │ │ ├── testdata11_raw │ │ │ ├── testdata12 │ │ │ ├── testdata120 │ │ │ ├── testdata120_raw │ │ │ ├── testdata121 │ │ │ ├── testdata121_raw │ │ │ ├── testdata122 │ │ │ ├── testdata122_raw │ │ │ ├── testdata123 │ │ │ ├── testdata123_raw │ │ │ ├── testdata124 │ │ │ ├── testdata124_raw │ │ │ ├── testdata125 │ │ │ ├── testdata125_raw │ │ │ ├── testdata126 │ │ │ ├── testdata126_raw │ │ │ ├── testdata127 │ │ │ ├── testdata127_raw │ │ │ ├── testdata128 │ │ │ ├── testdata128_raw │ │ │ ├── testdata129 │ │ │ ├── testdata129_raw │ │ │ ├── testdata12_raw │ │ │ ├── testdata13 │ │ │ ├── testdata130 │ │ │ ├── testdata130_raw │ │ │ ├── testdata131 │ │ │ ├── testdata131_raw │ │ │ ├── testdata132 │ │ │ ├── testdata132_raw │ │ │ ├── testdata133 │ │ │ ├── testdata133_raw │ │ │ ├── testdata134 │ │ │ ├── testdata134_raw │ │ │ ├── testdata135 │ │ │ ├── testdata135_raw │ │ │ ├── testdata136 │ │ │ ├── testdata136_raw │ │ │ ├── testdata137 │ │ │ ├── testdata137_raw │ │ │ ├── testdata138 │ │ │ ├── testdata138_raw │ │ │ ├── testdata139 │ │ │ ├── testdata139_raw │ │ │ ├── testdata13_raw │ │ │ ├── testdata14 │ │ │ ├── testdata140 │ │ │ ├── testdata140_raw │ │ │ ├── testdata141 │ │ │ ├── testdata141_raw │ │ │ ├── testdata142 │ │ │ ├── testdata142_exp │ │ │ ├── testdata14_raw │ │ │ ├── testdata15 │ │ │ ├── testdata15_raw │ │ │ ├── testdata16 │ │ │ ├── testdata16_raw │ │ │ ├── testdata17 │ │ │ ├── testdata17_raw │ │ │ ├── testdata18 │ │ │ ├── testdata18_raw │ │ │ ├── testdata19 │ │ │ ├── testdata19_raw │ │ │ ├── testdata1_raw │ │ │ ├── testdata2 │ │ │ ├── testdata20 │ │ │ ├── testdata20_raw │ │ │ ├── testdata21 │ │ │ ├── testdata21_raw │ │ │ ├── testdata22 │ │ │ ├── testdata22_raw │ │ │ ├── testdata23 │ │ │ ├── testdata23_raw │ │ │ ├── testdata24 │ │ │ ├── testdata24_raw │ │ │ ├── testdata25 │ │ │ ├── testdata25_raw │ │ │ ├── testdata26 │ │ │ ├── testdata26_raw │ │ │ ├── testdata27 │ │ │ ├── testdata27_raw │ │ │ ├── testdata28 │ │ │ ├── testdata28_raw │ │ │ ├── testdata29 │ │ │ ├── testdata29_raw │ │ │ ├── testdata2_raw │ │ │ ├── testdata3 │ │ │ ├── testdata30 │ │ │ ├── testdata30_raw │ │ │ ├── testdata31 │ │ │ ├── testdata31_raw │ │ │ ├── testdata32 │ │ │ ├── testdata32_raw │ │ │ ├── testdata33 │ │ │ ├── testdata33_raw │ │ │ ├── testdata34 │ │ │ ├── testdata34_raw │ │ │ ├── testdata35 │ │ │ ├── testdata35_raw │ │ │ ├── testdata36 │ │ │ ├── testdata36_raw │ │ │ ├── testdata37 │ │ │ ├── testdata37_raw │ │ │ ├── testdata38 │ │ │ ├── testdata38_raw │ │ │ ├── testdata39 │ │ │ ├── testdata39_raw │ │ │ ├── testdata3_raw │ │ │ ├── testdata4 │ │ │ ├── testdata40 │ │ │ ├── testdata40_raw │ │ │ ├── testdata41 │ │ │ ├── testdata41_raw │ │ │ ├── testdata42 │ │ │ ├── testdata42_raw │ │ │ ├── testdata43 │ │ │ ├── testdata43_raw │ │ │ ├── testdata44 │ │ │ ├── testdata44_raw │ │ │ ├── testdata45 │ │ │ ├── testdata45_raw │ │ │ ├── testdata46 │ │ │ ├── testdata46_raw │ │ │ ├── testdata47 │ │ │ ├── testdata47_raw │ │ │ ├── testdata48 │ │ │ ├── testdata48_raw │ │ │ ├── testdata49 │ │ │ ├── testdata49_raw │ │ │ ├── testdata4_raw │ │ │ ├── testdata5 │ │ │ ├── testdata50 │ │ │ ├── testdata50_raw │ │ │ ├── testdata51 │ │ │ ├── testdata51_raw │ │ │ ├── testdata52 │ │ │ ├── testdata52_raw │ │ │ ├── testdata53 │ │ │ ├── testdata53_raw │ │ │ ├── testdata54 │ │ │ ├── testdata54_raw │ │ │ ├── testdata55 │ │ │ ├── testdata55_raw │ │ │ ├── testdata56 │ │ │ ├── testdata56_raw │ │ │ ├── testdata57 │ │ │ ├── testdata57_raw │ │ │ ├── testdata58 │ │ │ ├── testdata58_raw │ │ │ ├── testdata59 │ │ │ ├── testdata59_raw │ │ │ ├── testdata5_raw │ │ │ ├── testdata6 │ │ │ ├── testdata60 │ │ │ ├── testdata60_raw │ │ │ ├── testdata61 │ │ │ ├── testdata61_raw │ │ │ ├── testdata62 │ │ │ ├── testdata62_raw │ │ │ ├── testdata63 │ │ │ ├── testdata63_raw │ │ │ ├── testdata64 │ │ │ ├── testdata64_raw │ │ │ ├── testdata65 │ │ │ ├── testdata65_raw │ │ │ ├── testdata66 │ │ │ ├── testdata66_raw │ │ │ ├── testdata67 │ │ │ ├── testdata67_raw │ │ │ ├── testdata68 │ │ │ ├── testdata68_raw │ │ │ ├── testdata69 │ │ │ ├── testdata69_raw │ │ │ ├── testdata6_raw │ │ │ ├── testdata7 │ │ │ ├── testdata70 │ │ │ ├── testdata70_raw │ │ │ ├── testdata71 │ │ │ ├── testdata71_raw │ │ │ ├── testdata72 │ │ │ ├── testdata72_raw │ │ │ ├── testdata73 │ │ │ ├── testdata73_raw │ │ │ ├── testdata74 │ │ │ ├── testdata74_raw │ │ │ ├── testdata75 │ │ │ ├── testdata75_raw │ │ │ ├── testdata76 │ │ │ ├── testdata76_raw │ │ │ ├── testdata77 │ │ │ ├── testdata77_raw │ │ │ ├── testdata78 │ │ │ ├── testdata78_raw │ │ │ ├── testdata79 │ │ │ ├── testdata79_raw │ │ │ ├── testdata7_raw │ │ │ ├── testdata8 │ │ │ ├── testdata80 │ │ │ ├── testdata80_raw │ │ │ ├── testdata81 │ │ │ ├── testdata81_raw │ │ │ ├── testdata82 │ │ │ ├── testdata82_raw │ │ │ ├── testdata83 │ │ │ ├── testdata83_raw │ │ │ ├── testdata84 │ │ │ ├── testdata84_raw │ │ │ ├── testdata85 │ │ │ ├── testdata85_raw │ │ │ ├── testdata86 │ │ │ ├── testdata86_raw │ │ │ ├── testdata87 │ │ │ ├── testdata87_raw │ │ │ ├── testdata88 │ │ │ ├── testdata88_raw │ │ │ ├── testdata89 │ │ │ ├── testdata89_raw │ │ │ ├── testdata8_raw │ │ │ ├── testdata9 │ │ │ ├── testdata90 │ │ │ ├── testdata90_raw │ │ │ ├── testdata91 │ │ │ ├── testdata91_raw │ │ │ ├── testdata92 │ │ │ ├── testdata92_raw │ │ │ ├── testdata93 │ │ │ ├── testdata93_raw │ │ │ ├── testdata94 │ │ │ ├── testdata94_raw │ │ │ ├── testdata95 │ │ │ ├── testdata95_raw │ │ │ ├── testdata96 │ │ │ ├── testdata96_raw │ │ │ ├── testdata97 │ │ │ ├── testdata97_raw │ │ │ ├── testdata98 │ │ │ ├── testdata98_raw │ │ │ ├── testdata99 │ │ │ ├── testdata99_raw │ │ │ └── testdata9_raw │ ├── copyright.conf │ ├── ecc.conf │ ├── ipra.conf │ ├── keyword.conf │ ├── mod_deps │ └── ui │ │ ├── CopyrightView.php │ │ ├── EccView.php │ │ ├── HistogramBase.php │ │ ├── IpraView.php │ │ ├── KeywordView.php │ │ ├── TextFindingsAjax.php │ │ ├── Xpview.php │ │ ├── agent-copyright.php │ │ ├── agent-ecc.php │ │ ├── agent-ipra.php │ │ ├── agent-keyword.php │ │ ├── ajax-copyright-hist.php │ │ ├── copyright-hist.php │ │ ├── ecc-hist.php │ │ ├── email-hist.php │ │ ├── ipra-hist.php │ │ ├── keyword-hist.php │ │ ├── library.php │ │ ├── list.php │ │ ├── oneshot.php │ │ ├── services.php │ │ └── template │ │ ├── copyrighthist.html.twig │ │ ├── copyrighthist_scripts.html.twig │ │ ├── copyrighthist_tables.html.twig │ │ ├── copyrightlist.html.twig │ │ ├── emailhist_tables.html.twig │ │ ├── histTable.html.twig │ │ ├── histTable.js.twig │ │ ├── ui-cp-view.html.twig │ │ └── ui-xp-view_rhs.html.twig ├── cyclonedx │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── cyclonedx.php │ │ ├── reportgenerator.php │ │ └── version.php.in │ ├── cyclonedx.conf │ └── ui │ │ ├── CycloneDXAgentPlugin.php │ │ └── CycloneDXGeneratorUi.php ├── debug │ ├── CMakeLists.txt │ └── ui │ │ ├── core-debug-fileloc.php │ │ ├── core-debug-flush-cache.php │ │ ├── core-debug-menus.php │ │ ├── core-debug-plugins.php │ │ └── core-debug-user.php ├── decider │ ├── CMakeLists.txt │ ├── agent │ │ ├── BulkReuser.php │ │ ├── CMakeLists.txt │ │ ├── DeciderAgent.php │ │ ├── copyrightDeactivationClutterRemovalScript.py │ │ ├── decider.php │ │ └── version.php.in │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── HelperPluginMock.php │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── SchedulerTestRunnerMock.php │ │ │ └── schedulerTest.php │ │ └── Unit │ │ │ └── DeciderAgentTest.php │ ├── decider.conf │ └── ui │ │ ├── DeciderAgentPlugin.php │ │ ├── services.php │ │ └── template │ │ └── agent_decider.html.twig ├── deciderjob │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── DeciderJobAgent.php │ │ ├── deciderjob.php │ │ └── version.php.in │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ └── Functional │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── SchedulerTestRunnerMock.php │ │ │ └── schedulerTest.php │ ├── deciderjob.conf │ └── ui │ │ └── DeciderJobAgentPlugin.php ├── decisionexporter │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── decisionexporter.php │ │ └── version.php.in │ ├── decisionexporter.conf │ └── ui │ │ ├── DecisionExporterAgentPlugin.php │ │ └── FoDecisionExporter.php ├── decisionimporter │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── DecisionImporterAgent.php │ │ ├── DecisionImporterDataCreator.php │ │ ├── DecisionImporterIdFetcher.php │ │ ├── FoDecisionData.php │ │ ├── decisionimporter.php │ │ └── version.php.in │ ├── decisionimporter.conf │ └── ui │ │ ├── AgentDecisionImporterPlugin.php │ │ ├── FoDecisionImporter.php │ │ ├── services.php │ │ └── template │ │ └── AgentDecisionImporterPlugin.html.twig ├── delagent │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── delagent.c │ │ ├── delagent.h │ │ └── util.c │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── ft_DelagentTest.php │ │ │ └── ft_cliDelagentTest.php │ │ ├── Unit │ │ │ ├── testDeleteFolders.c │ │ │ ├── testInitDB.sh │ │ │ ├── testInitRepo.sh │ │ │ ├── testListFolders.c │ │ │ ├── testRun.c │ │ │ └── testRun.h │ │ └── testdata │ │ │ ├── testdb_all.gz │ │ │ ├── testrepo_files.tar.gz │ │ │ └── testrepo_gold.tar.gz │ ├── delagent.conf │ ├── mod_deps │ └── ui │ │ ├── DeleteMessages.php │ │ ├── DeleteResponse.php │ │ ├── Page │ │ └── AdminUploadDelete.php │ │ ├── admin-folder-delete.php │ │ ├── delete-file-browse.php │ │ ├── delete-helper.php │ │ ├── services.php │ │ └── template │ │ └── admin_upload_delete.html.twig ├── demomod │ ├── CMakeLists.txt │ ├── README │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── Notes │ │ ├── demomod.c │ │ ├── demomod.h │ │ ├── process.c │ │ ├── usage.c │ │ └── utils.c │ ├── demomod.conf │ └── ui │ │ ├── agent-demomod.php │ │ ├── demohello.php │ │ └── demomod.php ├── dox.c ├── example_wc_agent │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── README.txt │ │ └── wc_agent.c │ └── example_wc_agent.conf ├── fossy-ruleset.xml ├── genvendor │ ├── CMakeLists.txt │ └── ComposerInstall ├── lib │ ├── CMakeLists.txt │ ├── c │ │ ├── CMakeLists.txt │ │ ├── fossconfig.c │ │ ├── fossconfig.h │ │ ├── fossconfigTest.c │ │ ├── libfossagent.c │ │ ├── libfossagent.h │ │ ├── libfossagentref.h │ │ ├── libfossdb.c │ │ ├── libfossdb.h │ │ ├── libfossdbmanager.c │ │ ├── libfossdbmanager.h │ │ ├── libfossology.h │ │ ├── libfossrepo.c │ │ ├── libfossrepo.h │ │ ├── libfossscheduler.c │ │ ├── libfossscheduler.h │ │ ├── repcat.c │ │ ├── repcopyin.c │ │ ├── repexist.c │ │ ├── rephost.c │ │ ├── repmmapcheck.c │ │ ├── reppath.c │ │ ├── repremove.c │ │ ├── repwrite.c │ │ ├── sqlCopy.c │ │ ├── sqlCopy.h │ │ ├── sqlCopyTest.c │ │ └── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── confdata │ │ │ ├── bad_key.conf │ │ │ ├── conftest.conf │ │ │ ├── invalid_group.conf │ │ │ ├── key_name.conf │ │ │ ├── key_value.conf │ │ │ └── no_group.conf │ │ │ ├── testClib.php │ │ │ ├── test_fossconfig.c │ │ │ ├── test_fossscheduler.c │ │ │ ├── test_libfossdb.c │ │ │ ├── test_libfossdbmanager.c │ │ │ └── testlibs.c │ ├── cpp │ │ ├── CMakeLists.txt │ │ ├── files.cc │ │ ├── files.hpp │ │ ├── libfossAgentDatabaseHandler.cc │ │ ├── libfossAgentDatabaseHandler.hpp │ │ ├── libfossUtils.cc │ │ ├── libfossUtils.hpp │ │ ├── libfossdbQueryResult.cc │ │ ├── libfossdbQueryResult.hpp │ │ ├── libfossdbmanagerclass.cc │ │ ├── libfossdbmanagerclass.hpp │ │ ├── libfossologyCPP.hpp │ │ ├── tests │ │ │ ├── CMakeLists.txt │ │ │ ├── run_tests.cc │ │ │ ├── testUtils.hpp │ │ │ └── test_fossdbmanagerclass.cc │ │ └── uniquePtr.hpp │ └── php │ │ ├── Agent │ │ └── Agent.php │ │ ├── Application │ │ ├── CurlRequest.php │ │ ├── CurlRequestService.php │ │ ├── LicenseCompatibilityRulesYamlExport.php │ │ ├── LicenseCompatibilityRulesYamlImport.php │ │ ├── LicenseCsvExport.php │ │ ├── LicenseCsvImport.php │ │ ├── ObligationCsvExport.php │ │ ├── ObligationCsvImport.php │ │ ├── RepositoryApi.php │ │ ├── UserInfo.php │ │ └── test │ │ │ ├── LicenseCsvExportTest.php │ │ │ ├── LicenseCsvImportTest.php │ │ │ ├── RepositoryApiTest.php │ │ │ └── UserInfoTest.php │ │ ├── Auth │ │ └── Auth.php │ │ ├── BusinessRules │ │ ├── AgentLicenseEventProcessor.php │ │ ├── ClearingDecisionFilter.php │ │ ├── ClearingDecisionProcessor.php │ │ ├── ClearingEventProcessor.php │ │ ├── DetectLicensesFolder.php │ │ ├── LicenseMap.php │ │ ├── ObligationMap.php │ │ ├── ReuseReportProcessor.php │ │ └── test │ │ │ ├── AgentLicenseEventProcessorTest.php │ │ │ ├── ClearingDecisionFilterTest.php │ │ │ ├── ClearingDecisionProcessorTest.php │ │ │ ├── ClearingEventProcessorTest.php │ │ │ └── LicenseMapTest.php │ │ ├── CMakeLists.txt │ │ ├── Dao │ │ ├── AgentDao.php │ │ ├── AllDecisionsDao.php │ │ ├── ClearingDao.php │ │ ├── CompatibilityDao.php │ │ ├── CopyrightDao.php │ │ ├── FolderDao.php │ │ ├── HighlightDao.php │ │ ├── JobDao.php │ │ ├── LicenseAcknowledgementDao.php │ │ ├── LicenseDao.php │ │ ├── LicenseStdCommentDao.php │ │ ├── PackageDao.php │ │ ├── PfileDao.php │ │ ├── SearchHelperDao.php │ │ ├── ShowJobsDao.php │ │ ├── SoftwareHeritageDao.php │ │ ├── SpashtDao.php │ │ ├── SysConfigDao.php │ │ ├── TreeDao.php │ │ ├── UploadDao.php │ │ ├── UploadPermissionDao.php │ │ ├── UserDao.php │ │ └── test │ │ │ ├── AgentDaoTest.php │ │ │ ├── ClearingDaoTest.php │ │ │ ├── CopyrightDaoTest.php │ │ │ ├── FolderDaoTest.php │ │ │ ├── LicenseDaoTest.php │ │ │ ├── LicenseStdCommentDaoTest.php │ │ │ ├── PfileDaoTest.php │ │ │ ├── ShowJobsDaoTest.php │ │ │ ├── TreeDaoTest.php │ │ │ ├── UploadDaoTest.php │ │ │ ├── UploadPermissionDaoTest.php │ │ │ └── UserDaoTest.php │ │ ├── Data │ │ ├── AgentRef.php │ │ ├── Clearing │ │ │ ├── AgentClearingEvent.php │ │ │ ├── ClearingEvent.php │ │ │ ├── ClearingEventBuilder.php │ │ │ ├── ClearingEventTypes.php │ │ │ ├── ClearingLicense.php │ │ │ ├── ClearingResult.php │ │ │ ├── LicenseClearing.php │ │ │ └── test │ │ │ │ ├── AgentClearingEventTest.php │ │ │ │ ├── ClearingEventTest.php │ │ │ │ ├── ClearingEventTypesTest.php │ │ │ │ └── ClearingResultTest.php │ │ ├── ClearingDecision.php │ │ ├── ClearingDecisionBuilder.php │ │ ├── DecisionScopes.php │ │ ├── DecisionTypes.php │ │ ├── Folder │ │ │ ├── Folder.php │ │ │ └── test │ │ │ │ └── FolderTest.php │ │ ├── Highlight.php │ │ ├── JobStatus.php │ │ ├── License.php │ │ ├── LicenseMatch.php │ │ ├── LicenseRef.php │ │ ├── Package │ │ │ ├── ComponentType.php │ │ │ ├── Package.php │ │ │ └── test │ │ │ │ └── PackageTest.php │ │ ├── Report │ │ │ ├── FileNode.php │ │ │ └── SpdxLicenseInfo.php │ │ ├── Spasht │ │ │ ├── Coordinate.php │ │ │ └── DefinitionSummary.php │ │ ├── SplitPosition.php │ │ ├── TextFragment.php │ │ ├── Tree │ │ │ ├── Item.php │ │ │ ├── ItemTreeBounds.php │ │ │ └── test │ │ │ │ ├── ItemTest.php │ │ │ │ └── ItemTreeBoundsTest.php │ │ ├── Types.php │ │ ├── Upload │ │ │ ├── Upload.php │ │ │ ├── UploadEvents.php │ │ │ ├── UploadProgress.php │ │ │ └── test │ │ │ │ └── UploadTest.php │ │ ├── UploadStatus.php │ │ └── test │ │ │ ├── AgentRefTest.php │ │ │ ├── ClearingDecisionBuilderTest.php │ │ │ ├── DecisionScopesTest.php │ │ │ ├── DecisionTypesTest.php │ │ │ ├── HighlightTest.php │ │ │ ├── LicenseMatchTest.php │ │ │ ├── LicenseRefTest.php │ │ │ ├── LicenseTest.php │ │ │ └── TextFragmentTest.php │ │ ├── Db │ │ ├── DbManager.php │ │ ├── Driver.php │ │ ├── Driver │ │ │ ├── Postgres.php │ │ │ └── SqliteE.php │ │ ├── ModernDbManager.php │ │ ├── SolidDbManager.php │ │ └── test │ │ │ ├── DbManagerTest.php │ │ │ ├── ModernDbManagerTest.php │ │ │ └── SolidDbManagerTest.php │ │ ├── Exception.php │ │ ├── Exceptions │ │ ├── DuplicateTokenKeyException.php │ │ ├── DuplicateTokenNameException.php │ │ └── InvalidAgentStageException.php │ │ ├── Html │ │ ├── HtmlElement.php │ │ ├── LinkElement.php │ │ ├── SimpleHtmlElement.php │ │ └── test │ │ │ ├── LinkElementTest.php │ │ │ └── SimpleElementTest.php │ │ ├── Plugin │ │ ├── AgentPlugin.php │ │ ├── DefaultPlugin.php │ │ ├── FO_Plugin.php │ │ ├── Plugin.php │ │ └── test │ │ │ └── DefaultPluginTest.php │ │ ├── Proxy │ │ ├── DbViewProxy.php │ │ ├── LatestScannerProxy.php │ │ ├── LicenseViewProxy.php │ │ ├── ScanJobProxy.php │ │ ├── UploadBrowseProxy.php │ │ ├── UploadTreeProxy.php │ │ ├── UploadTreeViewProxy.php │ │ └── test │ │ │ ├── DbViewProxyTest.php │ │ │ ├── LatestScannerProxyTest.php │ │ │ ├── LicenseViewProxyTest.php │ │ │ ├── ScanJobProxyTest.php │ │ │ ├── UploadBrowseProxyTest.php │ │ │ ├── UploadTreeProxyTest.php │ │ │ └── UploadTreeViewProxyTest.php │ │ ├── Report │ │ ├── BulkMatchesGetter.php │ │ ├── ClearedGetterCommon.php │ │ ├── LicenseClearedGetter.php │ │ ├── LicenseDNUGetter.php │ │ ├── LicenseIrrelevantGetter.php │ │ ├── LicenseMainGetter.php │ │ ├── LicenseNonFunctionalGetter.php │ │ ├── ObligationsGetter.php │ │ ├── OtherGetter.php │ │ ├── ReportUtils.php │ │ ├── XpClearedGetter.php │ │ └── tests │ │ │ └── ClearedGetterCommonTest.php │ │ ├── Test │ │ ├── Agent │ │ │ └── AgentTestMockHelper.php │ │ ├── EnumMapTestBase.php │ │ ├── Reflectory.php │ │ ├── TestAbstractDb.php │ │ ├── TestInstaller.php │ │ ├── TestLiteDb.php │ │ ├── TestPgDb.php │ │ ├── fosstestinit.sql │ │ ├── repo │ │ │ └── files │ │ │ │ ├── 04621571bcbabce75c4dd1c6445b87dec0995734.59cacdfce5051cd8a1d8a1f2dcce40a5.12320 │ │ │ │ ├── 562a730ac23d9e070a6de27d026ddc3e0d8d4c70.aa4879e93bb4ca852ed957e3e008434d.38 │ │ │ │ ├── 678c8ae6fc318346d61d540d30aa4ace024bbb8b.e35086757ee4f4b35b0b1c63107de47f.4483 │ │ │ │ ├── 8d59ecb1b531ed8fa2ac82b6b73317bacffa7c03.e47aa02935a589fada86489705e0e0f0.41 │ │ │ │ ├── 9058e69879bc8eb9b90688d6afc4061692214798.21cd829574210f39a89e9389246b9eaf.1804 │ │ │ │ ├── 93247c8db814f0a224b75b522c1fa4dc92dc3078.e7295a5773d0ea17d53cbe6293924dd4.10240 │ │ │ │ ├── a24c423da4189de61d320f86dac6d61fb1b414a4.fb428f421a053bf3ff4456ef18cfeac6.2616 │ │ │ │ ├── aac17f449140406c1f130e89b15773fcfe1825ab.44da1a7427fbd7af0de6d0413755dfb4.42 │ │ │ │ ├── b7c67f06cb898e964d4e8a87b1607fe9c2237da4.293baafd27959f52ed53c8fd28c6541b.34 │ │ │ │ ├── b8dc1dd3a5d098213d39e0f5f687506e737542ce.8aafe9ec69c8ba05cce9c4ec7c2531a7.10386 │ │ │ │ ├── c518ce1658140b65fa0132ad1130cb91512416bf.8e913e594d24ff3aeabe350107d97815.35829 │ │ │ │ ├── cd939e768cf3dd6a9174d316d72a6592905badf3.1e695642d1d76caa17696bc4a6a44244.6515 │ │ │ │ ├── d62dcd25dc68180758fd1c064adc91ab70a78cb1.c655f0ad3e4d3f90d8ee0541dd636e2e.34 │ │ │ │ ├── dfc1ea008f7c5ebe82ffa09a7990aca1eef1787f.c3fce1e6841bacbde991ea1d00c07f0e.62 │ │ │ │ └── fbe3181fd0addbd6e64b1ff6cae1223a7dacb836.95405535f6607638fc8b344f369d8ca9.64 │ │ ├── test │ │ │ ├── ReflectoryTest.php │ │ │ ├── TestLiteDbTest.php │ │ │ └── TestPgDbTest.php │ │ └── testdata.sql │ │ ├── Text │ │ ├── Converter.php │ │ ├── EncodingConverter.php │ │ └── tests │ │ │ └── EncodingConverterTest.php │ │ ├── UI │ │ ├── Component │ │ │ ├── Menu.php │ │ │ └── MicroMenu.php │ │ ├── FolderNav.php │ │ ├── MenuHook.php │ │ ├── MenuRenderer.php │ │ ├── TwigExtensions │ │ │ └── TranslateFilter.php │ │ ├── template │ │ │ ├── components │ │ │ │ ├── login-form.html.twig │ │ │ │ ├── menu.html.twig │ │ │ │ └── select-folder.html.twig │ │ │ └── include │ │ │ │ ├── base.html.twig │ │ │ │ ├── foot.html.twig │ │ │ │ ├── head.html.twig │ │ │ │ ├── macros.html.twig │ │ │ │ └── upload.html.twig │ │ └── test │ │ │ └── FolderNavTest.php │ │ ├── Util │ │ ├── ArrayOperation.php │ │ ├── CopyrightLister.php │ │ ├── DataTablesUtility.php │ │ ├── PurlOperations.php │ │ ├── StringOperation.php │ │ ├── TimingLogger.php │ │ └── test │ │ │ ├── ArrayOperationTest.php │ │ │ ├── StringOperationTest.php │ │ │ └── TimingLoggerTest.php │ │ ├── View │ │ ├── HighlightProcessor.php │ │ ├── HighlightRenderer.php │ │ ├── HighlightState.php │ │ ├── PagedHexResult.php │ │ ├── PagedResult.php │ │ ├── PagedTextResult.php │ │ ├── TextRenderer.php │ │ ├── UrlBuilder.php │ │ └── test │ │ │ ├── HighlightProcessorTest.php │ │ │ ├── HighlightRendererTest.php │ │ │ ├── HighlightStateTest.php │ │ │ ├── PagedHexResultTest.php │ │ │ ├── PagedResultTest.php │ │ │ ├── PagedTextResultTest.php │ │ │ ├── TextRendererTest.php │ │ │ └── UrlBuilderTest.php │ │ ├── bootstrap.php.in │ │ ├── common-active.php │ │ ├── common-agents.php │ │ ├── common-auth.php │ │ ├── common-buckets.php │ │ ├── common-cache.php │ │ ├── common-cli.php │ │ ├── common-compare.php │ │ ├── common-container.php │ │ ├── common-db.php │ │ ├── common-dir.php │ │ ├── common-folders.php │ │ ├── common-job.php │ │ ├── common-license-file.php │ │ ├── common-menu.php │ │ ├── common-parm.php │ │ ├── common-perms.php │ │ ├── common-pkg.php │ │ ├── common-plugin.php │ │ ├── common-repo.php │ │ ├── common-scheduler.php │ │ ├── common-string.php │ │ ├── common-sysconfig.php │ │ ├── common-tags.php │ │ ├── common-ui.php │ │ ├── common-users.php │ │ ├── common.php │ │ ├── fossdash-config.php │ │ ├── libschema.php │ │ ├── services.xml.in │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── sysconfigDirTest │ │ ├── Db.conf │ │ ├── VERSION │ │ └── fossology.conf │ │ ├── test_common_active.php │ │ ├── test_common_auth.php │ │ ├── test_common_cache.php │ │ ├── test_common_cli.php │ │ ├── test_common_dir.php │ │ ├── test_common_license_file.php │ │ ├── test_common_menu.php │ │ ├── test_common_parm.php │ │ ├── test_common_pkg.php │ │ ├── test_common_sysconfig.php │ │ ├── test_common_ui.php │ │ ├── test_fossdash_config.php │ │ └── tests.xml ├── maintagent │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── maintagent.c │ │ ├── maintagent.h │ │ ├── process.c │ │ ├── usage.c │ │ └── utils.c │ ├── maintagent.conf │ └── ui │ │ └── maintagent.php ├── mimetype │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── finder.c │ │ ├── finder.h │ │ └── mimetype.c │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ └── cliParamsTest4Mimetype.php │ │ └── Unit │ │ │ ├── finder │ │ │ ├── testDBCheckMime.c │ │ │ ├── testDBFindMime.c │ │ │ ├── testDBLoadMime.c │ │ │ └── testOtheFunctions.c │ │ │ ├── testRun.c │ │ │ └── testRun.h │ ├── mimetype.conf │ ├── mod_deps │ └── ui │ │ └── agent-mimetype.php ├── monk │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── buildSquareVisitor.c │ │ ├── cli.c │ │ ├── cli.h │ │ ├── common.c │ │ ├── common.h │ │ ├── database.c │ │ ├── database.h │ │ ├── diff.c │ │ ├── diff.h │ │ ├── encoding.c │ │ ├── encoding.h │ │ ├── file_operations.c │ │ ├── file_operations.h │ │ ├── generator │ │ │ ├── _squareVisitor.h.post │ │ │ ├── _squareVisitor.h.pre │ │ │ └── genSquareVisitor │ │ ├── hash.c │ │ ├── hash.h │ │ ├── highlight.c │ │ ├── highlight.h │ │ ├── license.c │ │ ├── license.h │ │ ├── match.c │ │ ├── match.h │ │ ├── monk.c │ │ ├── monk.h │ │ ├── monkbulk.c │ │ ├── monkbulk.h │ │ ├── scheduler.c │ │ ├── scheduler.h │ │ ├── serialize.c │ │ ├── serialize.h │ │ ├── string_operations.c │ │ └── string_operations.h │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── bulkTest.php │ │ │ ├── cliTest.php │ │ │ └── schedulerTest.php │ │ ├── Unit │ │ │ ├── run_tests.c │ │ │ ├── test_database.c │ │ │ ├── test_diff.c │ │ │ ├── test_encoding.c │ │ │ ├── test_file_operations.c │ │ │ ├── test_hash.c │ │ │ ├── test_highlight.c │ │ │ ├── test_license.c │ │ │ ├── test_match.c │ │ │ ├── test_serialize.c │ │ │ └── test_string_operations.c │ │ └── testlicenses │ │ │ ├── expectedDiff │ │ │ ├── Apache-2.0,addition │ │ │ ├── Apache-2.0,remove │ │ │ ├── GPL-1.0-or-later,addition │ │ │ ├── GPL-1.0-or-later,biggeraddition │ │ │ ├── GPL-1.0-or-later,biggerremove │ │ │ ├── GPL-1.0-or-later,mixed │ │ │ ├── GPL-1.0-or-later,remove │ │ │ ├── GPL-1.0-or-later,replace │ │ │ └── GPL-1.0-or-later,simple-replace │ │ │ └── expectedFull │ │ │ ├── APL-1.0 │ │ │ ├── Apache-1.1 │ │ │ ├── Apache-2.0 │ │ │ ├── BSD-2-Clause │ │ │ ├── BSD-3-Clause │ │ │ ├── BSD-3-Clause-Clear │ │ │ ├── BSD-3-Clause-Severability │ │ │ ├── BSD-4-Clause │ │ │ ├── CATOSL-1.1 │ │ │ ├── CC-BY-3.0 │ │ │ ├── CC-BY-NC-2.5 │ │ │ ├── CC-BY-NC-SA-2.0 │ │ │ ├── GPL-1.0-or-later │ │ │ ├── GPL-2.0-with-GCC-exception │ │ │ ├── GPL-3.0-with-bison-exception │ │ │ ├── Python-2.0 │ │ │ ├── Python-3.1.1 │ │ │ ├── ZPL-2.0 │ │ │ ├── ZPL-2.1 │ │ │ └── Zimbra-1.3 │ ├── monk.conf │ ├── monkbulk.conf │ └── ui │ │ ├── admin-monk-revision.php │ │ ├── agent-monk-bulk.php │ │ ├── agent-monk.php │ │ └── oneshot.php ├── ninka │ ├── CMakeLists.txt │ ├── README.md │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── databasehandler.cc │ │ ├── databasehandler.hpp │ │ ├── licensematch.cc │ │ ├── licensematch.hpp │ │ ├── ninka.cc │ │ ├── ninka.hpp │ │ ├── ninkawrapper.cc │ │ ├── ninkawrapper.hpp │ │ ├── state.cc │ │ ├── state.hpp │ │ ├── utils.cc │ │ └── utils.hpp │ ├── agent_tests │ │ ├── Functional │ │ │ └── schedulerTest.php │ │ └── Unit │ │ │ ├── run_tests.cc │ │ │ └── test_ninkawrapper.cc │ ├── ninka.conf │ └── ui │ │ └── agent-ninka.php ├── nomos │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── DMalloc.3x │ │ ├── DMalloc.c │ │ ├── DMalloc.h │ │ ├── Notes │ │ ├── README │ │ ├── _split_words.license │ │ ├── doctorBuffer_utils.c │ │ ├── doctorBuffer_utils.h │ │ ├── encode.c │ │ ├── generator │ │ │ ├── CHECKSTR │ │ │ ├── GENSEARCHDATA │ │ │ ├── GenCodeCopyright │ │ │ ├── PRECHECK │ │ │ ├── STRINGS.in │ │ │ ├── _split_words │ │ │ └── _split_words.license │ │ ├── json_writer.c │ │ ├── json_writer.h │ │ ├── licenses.c │ │ ├── licenses.h │ │ ├── list.c │ │ ├── list.h │ │ ├── nomos.c │ │ ├── nomos.h │ │ ├── nomos_gap.c │ │ ├── nomos_gap.h │ │ ├── nomos_regex.c │ │ ├── nomos_regex.h │ │ ├── nomos_utils.c │ │ ├── nomos_utils.h │ │ ├── parse.c │ │ ├── parse.h │ │ ├── process.c │ │ ├── process.h │ │ ├── standalone.c │ │ ├── standalone.h │ │ ├── transition.notes │ │ ├── util.c │ │ └── util.h │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── CommonCliTest.php │ │ │ ├── Nomos-fun-test.php │ │ │ ├── OneShot-JSON.php │ │ │ ├── OneShot-Oracle-Berkeley-DB.php │ │ │ ├── OneShot-affero.php │ │ │ ├── OneShot-bsd.php │ │ │ ├── OneShot-empty.php │ │ │ ├── OneShot-gpl3.php │ │ │ ├── OneShot-lgpl2.1.php │ │ │ ├── OneShot-multiFile.php │ │ │ ├── OneShot-none.php │ │ │ ├── OneShot_test.sh │ │ │ ├── shunit2 │ │ │ ├── shunit2_plugin_example │ │ │ └── tests.xml │ │ ├── Unit │ │ │ ├── run_tests.c │ │ │ ├── test_DoctoredBuffer.c │ │ │ └── test_nomos_gap.c │ │ └── testdata │ │ │ ├── LastGoodNomosTestfilesScan │ │ │ ├── NomosTestfiles │ │ │ ├── AAL │ │ │ │ ├── AAL.txt │ │ │ │ └── LICENSE │ │ │ ├── ACAA │ │ │ │ └── c32001a.ada │ │ │ ├── ACE │ │ │ │ └── ACE-copying.html │ │ │ ├── AFL │ │ │ │ ├── AFL-1.1.txt │ │ │ │ ├── AFL-1.2.txt │ │ │ │ ├── AFL-2.0.txt │ │ │ │ ├── AFL-2.1.txt │ │ │ │ ├── AFL-2.1_dojo.js │ │ │ │ ├── AFL-3.0.txt │ │ │ │ ├── LICENSE │ │ │ │ ├── dojo.js │ │ │ │ └── list_sidebar.phtml │ │ │ ├── AGPL │ │ │ │ ├── AGPL-3.0.txt │ │ │ │ ├── AGPL-3.0_ref_a.txt │ │ │ │ ├── AGPL-3.0_ref_b.txt │ │ │ │ ├── AGPL-3.0_ref_c.txt │ │ │ │ ├── AGPL-3.0_ref_d.txt │ │ │ │ ├── AGPL-3.0_ref_e.txt │ │ │ │ ├── Affero-v1.0 │ │ │ │ ├── JsonMapper.php │ │ │ │ ├── ampdu.c │ │ │ │ ├── apps.js │ │ │ │ ├── pm2-copyright.txt │ │ │ │ └── readme.rst │ │ │ ├── AML │ │ │ │ └── AML.txt │ │ │ ├── ANTLR-PD │ │ │ │ └── ANTLR-PD.txt │ │ │ ├── APL │ │ │ │ └── APL-1.0.txt │ │ │ ├── APSL │ │ │ │ ├── APSL-1.0.txt │ │ │ │ ├── APSL-1.1.txt │ │ │ │ ├── APSL-1.2.txt │ │ │ │ ├── APSL-2.0.txt │ │ │ │ ├── DNSDigest.c │ │ │ │ ├── MOKit.html │ │ │ │ └── apple.lic │ │ │ ├── ATT │ │ │ │ ├── ATT-Lucent.txt │ │ │ │ ├── ATT.txt │ │ │ │ └── NOTICE.libutf │ │ │ ├── Abstyles │ │ │ │ └── Abstyles.txt │ │ │ ├── Adobe │ │ │ │ ├── Adobe-2006.txt │ │ │ │ ├── Adobe-DNG.txt │ │ │ │ ├── Adobe-Glyph.txt │ │ │ │ ├── AdobeAFM.txt │ │ │ │ ├── Adobe_a.txt │ │ │ │ ├── Adobe_b.txt │ │ │ │ └── Afmparse.txt │ │ │ ├── Aladdin │ │ │ │ ├── Aladdin.txt │ │ │ │ └── LICENSE.txt │ │ │ ├── Amazon │ │ │ │ └── ADSL.txt │ │ │ ├── Apache │ │ │ │ ├── Android_SDK_license.txt │ │ │ │ ├── Apache-1.0.c │ │ │ │ ├── Apache-1.0.txt │ │ │ │ ├── Apache-1.1-style.txt │ │ │ │ ├── Apache-1.1.txt │ │ │ │ ├── Apache-1.1_a.txt │ │ │ │ ├── Apache-1.1_b.txt │ │ │ │ ├── Apache-2.0-nourl.txt │ │ │ │ ├── Apache-2.0.txt │ │ │ │ ├── Apache-2.0.xml │ │ │ │ ├── Apache-2.0_a.txt │ │ │ │ ├── Apache-2.0_b.txt │ │ │ │ ├── Apache-2.0_c.txt │ │ │ │ ├── Apache-2.0_d.txt │ │ │ │ ├── Apache-2.0_e.txt │ │ │ │ ├── Apache-2.0_f.txt │ │ │ │ ├── Apache-2.0_g.txt │ │ │ │ ├── Apache-2.0_h.txt │ │ │ │ ├── Apache-2.0_i.txt │ │ │ │ ├── Apache-2.0_j.txt │ │ │ │ ├── Apache-2.0_k.txt │ │ │ │ ├── Apache-2.0_l.txt │ │ │ │ ├── Apache-2.0_m.txt │ │ │ │ ├── Apache-2.0_n.txt │ │ │ │ ├── Apache-v1.1 │ │ │ │ ├── DomainList.java │ │ │ │ ├── LGPL-3.0+_or_Apache.txt │ │ │ │ ├── License-2.0.Apache_v2.0 │ │ │ │ ├── NOTICE.txt │ │ │ │ ├── Subject.java │ │ │ │ ├── Subject.java-Apache-2.0 │ │ │ │ ├── abs_s.h │ │ │ │ ├── condor_blkng_full_disk_io.h │ │ │ │ ├── etcd.txt │ │ │ │ ├── install-windows-quirks.xml.inc │ │ │ │ ├── license.txt │ │ │ │ ├── tsproxy.readme │ │ │ │ └── x.txt │ │ │ ├── Artistic-1.0-Perl │ │ │ │ └── Artistic-1.0-Perl.txt │ │ │ ├── Artistic-1.0-cl8 │ │ │ │ └── Artistic-1.0-cl8.txt │ │ │ ├── Artistic │ │ │ │ ├── Artistic-1.0-Perl.txt │ │ │ │ ├── Artistic-1.0-cl8.txt │ │ │ │ ├── Artistic-1.0.txt │ │ │ │ ├── Artistic-2.0.txt │ │ │ │ ├── Artistic-2.0_ref_a.txt │ │ │ │ ├── Hero.java │ │ │ │ ├── a2p.c │ │ │ │ └── macos_main.cpp │ │ │ ├── Authorship-inference │ │ │ │ └── setup │ │ │ ├── BSD │ │ │ │ ├── 0BSD.txt │ │ │ │ ├── AMPAS.txt │ │ │ │ ├── ANT+SharedSourceLicense.txt │ │ │ │ ├── BSD-1-Clause.txt │ │ │ │ ├── BSD-2-Clause-FreeBSD.txt │ │ │ │ ├── BSD-2-Clause-NetBSD.txt │ │ │ │ ├── BSD-2-Clause-Patent.txt │ │ │ │ ├── BSD-2-Clause.txt │ │ │ │ ├── BSD-2-Clause_2.txt │ │ │ │ ├── BSD-2-Clause_3.txt │ │ │ │ ├── BSD-2-Clause_AND_Imlib2.txt │ │ │ │ ├── BSD-2-Clause_not_BSD-style.txt │ │ │ │ ├── BSD-2-Clause_ref_a.txt │ │ │ │ ├── BSD-2-Clause_ref_b.txt │ │ │ │ ├── BSD-2-Clause_ref_c.txt │ │ │ │ ├── BSD-2-Clause_ref_d.txt │ │ │ │ ├── BSD-3-Clause-Attribution.txt │ │ │ │ ├── BSD-3-Clause-Attribution_CMU.txt │ │ │ │ ├── BSD-3-Clause-Clear.c │ │ │ │ ├── BSD-3-Clause-Clear.txt │ │ │ │ ├── BSD-3-Clause-Clear_a.txt │ │ │ │ ├── BSD-3-Clause-LBNL_a.txt │ │ │ │ ├── BSD-3-Clause-Open-MPI.txt │ │ │ │ ├── BSD-3-Clause.txt │ │ │ │ ├── BSD-3-Clause_2.txt │ │ │ │ ├── BSD-3-Clause_3.txt │ │ │ │ ├── BSD-3-Clause_4.txt │ │ │ │ ├── BSD-3-Clause_5.txt │ │ │ │ ├── BSD-3-Clause_6.txt │ │ │ │ ├── BSD-3-Clause_7.txt │ │ │ │ ├── BSD-3-Clause_8.txt │ │ │ │ ├── BSD-3-Clause_AND_CC0-1.0.txt │ │ │ │ ├── BSD-3-Clause_and_LGPL-3.0.txt │ │ │ │ ├── BSD-4-Clause-UC.txt │ │ │ │ ├── BSD-4-Clause-UC_and_ISC.txt │ │ │ │ ├── BSD-4-Clause.txt │ │ │ │ ├── BSD-4-Clause_2.txt │ │ │ │ ├── BSD-4-Clause_3.txt │ │ │ │ ├── BSD-4-Clause_4.txt │ │ │ │ ├── BSD_ref_a.txt │ │ │ │ ├── BSD_ref_b.txt │ │ │ │ ├── BSD_style_a.txt │ │ │ │ ├── BSD_style_aa.txt │ │ │ │ ├── BSD_style_ab.txt │ │ │ │ ├── BSD_style_b.txt │ │ │ │ ├── BSD_style_c.txt │ │ │ │ ├── BSD_style_d.txt │ │ │ │ ├── BSD_style_e.txt │ │ │ │ ├── BSD_style_f.txt │ │ │ │ ├── BSD_style_g.txt │ │ │ │ ├── BSD_style_h.txt │ │ │ │ ├── BSD_style_i.txt │ │ │ │ ├── BSD_style_j.txt │ │ │ │ ├── BSD_style_k.txt │ │ │ │ ├── BSD_style_l.txt │ │ │ │ ├── BSD_style_m.txt │ │ │ │ ├── BSD_style_n.txt │ │ │ │ ├── BSD_style_o.txt │ │ │ │ ├── BSD_style_p.txt │ │ │ │ ├── BSD_style_q.txt │ │ │ │ ├── BSD_style_s.txt │ │ │ │ ├── BSD_style_t.txt │ │ │ │ ├── BSD_style_u.txt │ │ │ │ ├── BSD_style_v.txt │ │ │ │ ├── BSD_style_w.txt │ │ │ │ ├── BSD_style_x.txt │ │ │ │ ├── BSD_style_y.txt │ │ │ │ ├── BSD_style_z.txt │ │ │ │ ├── DARPA-Cougaar_a.txt │ │ │ │ ├── DARPA-Cougaar_b.txt │ │ │ │ ├── DoerffelBSD │ │ │ │ ├── Epl.h │ │ │ │ ├── FindUSB1.cmake │ │ │ │ ├── HP-DEC-style.txt │ │ │ │ ├── HP-DEC.txt │ │ │ │ ├── Inflate.java │ │ │ │ ├── Linux-OpenIB.txt │ │ │ │ ├── New-BSD_ref_a.txt │ │ │ │ ├── README.html │ │ │ │ ├── README.org │ │ │ │ ├── README.pdfium │ │ │ │ ├── README.rst │ │ │ │ ├── SNMP-TLS-TM-MIB.txt │ │ │ │ ├── WalkinBSD │ │ │ │ ├── Zend-2.0 │ │ │ │ ├── __init__.py │ │ │ │ ├── access.c │ │ │ │ ├── autoopts.c │ │ │ │ ├── bsd-3-1 │ │ │ │ ├── bsd-3-2 │ │ │ │ ├── bsd-3-3 │ │ │ │ ├── bsd-3-4 │ │ │ │ ├── bsd-3.txt │ │ │ │ ├── bsd.txt │ │ │ │ ├── bug3537_DNSDigest.c │ │ │ │ ├── bzip2-1.0.5.txt │ │ │ │ ├── bzip2-1.0.6.txt │ │ │ │ ├── chpst.c │ │ │ │ ├── defconfig │ │ │ │ ├── destest.c │ │ │ │ ├── endiantest.c.BSD-2 │ │ │ │ ├── htmlArea.txt │ │ │ │ ├── htmlArea_ref.txt │ │ │ │ ├── ibm.php │ │ │ │ ├── inetd.c │ │ │ │ ├── license.terms │ │ │ │ ├── lz4.c │ │ │ │ ├── lz4.license │ │ │ │ ├── manual-bsdstyle │ │ │ │ ├── net-snmp-license.txt │ │ │ │ ├── podd.h │ │ │ │ ├── purdue.txt │ │ │ │ ├── sparse_format.h │ │ │ │ └── toybox.html │ │ │ ├── BSL │ │ │ │ ├── BSL-1.0.txt │ │ │ │ ├── boost.css │ │ │ │ ├── graphviz_digraph_lex.cpp │ │ │ │ └── intel.hpp │ │ │ ├── Beerware │ │ │ │ └── hash_md5prime.c │ │ │ ├── Bittorrent │ │ │ │ ├── bittorrent.nsi │ │ │ │ └── bittorrent.py │ │ │ ├── CATOSL │ │ │ │ ├── CATOSL-1.1.txt │ │ │ │ └── qp157.sep │ │ │ ├── CC │ │ │ │ ├── CC-BY-1.0.txt │ │ │ │ ├── CC-BY-1.0_ref.txt │ │ │ │ ├── CC-BY-2.0.txt │ │ │ │ ├── CC-BY-2.0_ref.txt │ │ │ │ ├── CC-BY-2.5.txt │ │ │ │ ├── CC-BY-2.5_ref.txt │ │ │ │ ├── CC-BY-3.0.txt │ │ │ │ ├── CC-BY-4.0.txt │ │ │ │ ├── CC-BY-NC-1.0.txt │ │ │ │ ├── CC-BY-NC-2.0.txt │ │ │ │ ├── CC-BY-NC-2.5.txt │ │ │ │ ├── CC-BY-NC-3.0.txt │ │ │ │ ├── CC-BY-NC-4.0.txt │ │ │ │ ├── CC-BY-NC-ND-1.0.txt │ │ │ │ ├── CC-BY-NC-ND-2.0.txt │ │ │ │ ├── CC-BY-NC-ND-2.5.txt │ │ │ │ ├── CC-BY-NC-ND-3.0.txt │ │ │ │ ├── CC-BY-NC-ND-4.0.txt │ │ │ │ ├── CC-BY-NC-SA-1.0.txt │ │ │ │ ├── CC-BY-NC-SA-2.0.txt │ │ │ │ ├── CC-BY-NC-SA-2.5.txt │ │ │ │ ├── CC-BY-NC-SA-3.0.txt │ │ │ │ ├── CC-BY-NC-SA-4.0.txt │ │ │ │ ├── CC-BY-ND-1.0.txt │ │ │ │ ├── CC-BY-ND-2.0.txt │ │ │ │ ├── CC-BY-ND-2.5.txt │ │ │ │ ├── CC-BY-ND-3.0.txt │ │ │ │ ├── CC-BY-ND-3.0_URL.txt │ │ │ │ ├── CC-BY-ND-4.0.txt │ │ │ │ ├── CC-BY-SA-1.0.txt │ │ │ │ ├── CC-BY-SA-2.0.txt │ │ │ │ ├── CC-BY-SA-2.5.txt │ │ │ │ ├── CC-BY-SA-3.0.txt │ │ │ │ ├── CC-BY-SA-3.0b.txt │ │ │ │ ├── CC-BY-SA-3.0c.txt │ │ │ │ ├── CC-BY-SA-4.0.txt │ │ │ │ ├── CC-BY-SA-4.0_ref_a.txt │ │ │ │ ├── CC0-1.0.txt │ │ │ │ ├── CopyrightPolicyTheWhiteHouse.html │ │ │ │ ├── DS_HuffmanEncodingTreeNode.h │ │ │ │ ├── GCOneShotEffectTimer.h │ │ │ │ ├── LICENSE │ │ │ │ ├── License.txt │ │ │ │ ├── Licensing.html │ │ │ │ ├── README │ │ │ │ ├── README.icons.txt │ │ │ │ ├── accessstate.h │ │ │ │ ├── bltsville.h │ │ │ │ ├── boot_config.h │ │ │ │ ├── config.h │ │ │ │ ├── configwords.h │ │ │ │ ├── ifiction.h │ │ │ │ ├── license.h │ │ │ │ ├── malloc.h │ │ │ │ ├── matching.py │ │ │ │ ├── md5.js │ │ │ │ ├── memory_map.h │ │ │ │ ├── netbsd.h │ │ │ │ ├── perl-XML-Writer.spec │ │ │ │ └── setup.h │ │ │ ├── CCLRC │ │ │ │ └── cdunifpp_check.c │ │ │ ├── CDDL │ │ │ │ ├── CDDL-1.0-ref.xml │ │ │ │ ├── CDDL-1.0.txt │ │ │ │ ├── CDDL-1.0_and_CDDL-1.1.txt │ │ │ │ ├── CDDL-1.1.txt │ │ │ │ ├── DEPENDENCIES.txt │ │ │ │ ├── RegistrationData.java │ │ │ │ ├── doctext.h │ │ │ │ └── vnode.h │ │ │ ├── CDLA │ │ │ │ ├── CDLA-Permissive-1.0.txt │ │ │ │ └── CDLA-Sharing-1.0.txt │ │ │ ├── CECILL │ │ │ │ ├── CECILL-1.0.txt │ │ │ │ ├── CECILL-1.1.txt │ │ │ │ ├── CECILL-2.0.txt │ │ │ │ ├── CECILL-B.txt │ │ │ │ ├── CECILL-C.txt │ │ │ │ ├── CImg.h │ │ │ │ ├── GameMode.java │ │ │ │ ├── ParametersFileFilter.java │ │ │ │ ├── dataset_io.h │ │ │ │ └── qapplication_proxy.cpp │ │ │ ├── CMU │ │ │ │ ├── Bellcore.txt │ │ │ │ ├── CMU-style.txt │ │ │ │ ├── CMU_a.txt │ │ │ │ ├── CMU_b.txt │ │ │ │ ├── CMU_c.txt │ │ │ │ ├── CMU_d.txt │ │ │ │ ├── MIT-CMU-style.txt │ │ │ │ ├── MIT-CMU-style_b.txt │ │ │ │ ├── MIT-CMU.txt │ │ │ │ └── USC.Non-commercial │ │ │ ├── CMake │ │ │ │ └── FindRuby.cmake │ │ │ ├── CNRI-Python │ │ │ │ ├── CNRI-Python-GPL-Compatible.txt │ │ │ │ └── CNRI-Python.txt │ │ │ ├── COMMERCIAL │ │ │ │ ├── commercial1.txt │ │ │ │ ├── commercial2.txt │ │ │ │ └── commercial3.txt │ │ │ ├── CPAL │ │ │ │ ├── CPAL-1.0.txt │ │ │ │ ├── EndpointMessageProcessorsTestCase.java │ │ │ │ └── abstract.php │ │ │ ├── CPL │ │ │ │ ├── CPL-0.5 │ │ │ │ ├── CPL-1.0.txt │ │ │ │ ├── CPL-1.0_ref_a.txt │ │ │ │ ├── CPL-1.0_ref_b.txt │ │ │ │ ├── CPL_license_test.txt │ │ │ │ ├── Not_Eclipse_license.txt │ │ │ │ └── Serializer.cs │ │ │ ├── CPOL │ │ │ │ └── CPOL.txt │ │ │ ├── CUA-OPL │ │ │ │ ├── CUA-OPL-1.0.txt │ │ │ │ └── cua_office_t1.c │ │ │ ├── ClArtistic │ │ │ │ ├── ClArtistic.txt │ │ │ │ └── SaveAbleCollection.cpp │ │ │ ├── ClearSilver │ │ │ │ └── csparse.c │ │ │ ├── Condor │ │ │ │ ├── Condor-1.0 │ │ │ │ └── condor-1.1 │ │ │ ├── CrystalStacker │ │ │ │ └── CrystalStacker.txt │ │ │ ├── D-FSL-1.0 │ │ │ │ └── D-FSL-1.0.txt │ │ │ ├── D-FSL │ │ │ │ └── D-FSL-1.0.txt │ │ │ ├── DPTC │ │ │ │ └── dpt_osdutil.h │ │ │ ├── Debian-SPI │ │ │ │ └── Debian-SPI.txt │ │ │ ├── Dual-license │ │ │ │ ├── 004.phpt.GPLv2+-PHP │ │ │ │ ├── 7-zip_GPL-2.1+-unRARrestriction │ │ │ │ ├── AFL-2.1_or_BSD.txt │ │ │ │ ├── AFL-2.1_or_GPL-2.0.txt │ │ │ │ ├── Apache-2.0_or_BSD-3-Clause.txt │ │ │ │ ├── Apache-2.0_or_CC-BY-4.0.txt │ │ │ │ ├── Apache-2.0_or_CC0-1.0.txt │ │ │ │ ├── Apache-2.0_or_EPL-1.0.txt │ │ │ │ ├── Apache-2.0_or_GPL-2.0.txt │ │ │ │ ├── Apache-2.0_or_LGPL-2.1+.txt │ │ │ │ ├── Apache-2.0_or_LGPL-3.0+.txt │ │ │ │ ├── Artistic-1.0+GPL_META.yml │ │ │ │ ├── BSD-2-Clause_or_GPL-2.0.txt │ │ │ │ ├── BSD-3-Clause_or_GPL-2.0+.txt │ │ │ │ ├── BSD-style_or_GPL-2.0+.txt │ │ │ │ ├── BSD-style_or_LGPL-2.1+.txt │ │ │ │ ├── BSD_or_GPL-2.0_1.txt │ │ │ │ ├── BSD_or_GPL-2.0_2.txt │ │ │ │ ├── BSL-1.0_or_MIT.txt │ │ │ │ ├── Base64Code.java │ │ │ │ ├── CDDL_or_GPL-2.0-with-classpath-exception.txt │ │ │ │ ├── CRYPTOGAMS.txt │ │ │ │ ├── ClearBSD_or_GPL-2.0+.txt │ │ │ │ ├── EPL-1.0_or_MPL-2.0_1.txt │ │ │ │ ├── EPL-1.0_or_MPL-2.0_2.txt │ │ │ │ ├── EPL-2.0_or_GPL-2.0_or_LGPL-2.1.txt │ │ │ │ ├── FTL_OR_GPL-2.0.txt │ │ │ │ ├── GPL-2.0+_or_BSD-3-Clause_1.txt │ │ │ │ ├── GPL-2.0+_or_BSD-3-Clause_2.txt │ │ │ │ ├── GPL-2.0+_or_LGPL-2.0+.txt │ │ │ │ ├── GPL-2.0+_or_MIT.txt │ │ │ │ ├── GPL-2.0_OR_RHeCos-1.1.txt │ │ │ │ ├── GPL-2.0_or_BSD-2-Clause.txt │ │ │ │ ├── GPL-2.0_or_BSD-3-Clause_1.txt │ │ │ │ ├── GPL-2.0_or_BSD-3-Clause_2.txt │ │ │ │ ├── GPL-2.0_or_BSD-3-Clause_3.txt │ │ │ │ ├── GPL-2.0_or_BSD.txt │ │ │ │ ├── GPL-2.0_or_LGPL-2.0.txt │ │ │ │ ├── GPL-2.0_or_Linux-OpenIB_1.txt │ │ │ │ ├── GPL-2.0_or_Linux-OpenIB_2.txt │ │ │ │ ├── GPL-2.0_or_Linux-OpenIB_3.txt │ │ │ │ ├── GPL-2.0_or_Python-2.2.txt │ │ │ │ ├── GPL-2.0_or_X11.txt │ │ │ │ ├── H2_ExhibitA.rtf │ │ │ │ ├── H2_License_1.0.rtf │ │ │ │ ├── Identity_daemon.c │ │ │ │ ├── LGPL-2.1_or_MPL-1.0.txt │ │ │ │ ├── LGPL-2.1_or_MPL-1.1_1.txt │ │ │ │ ├── LGPL-2.1_or_MPL-1.1_2.txt │ │ │ │ ├── LGPL-2.1_or_MPL-1.1_and_MIT.txt │ │ │ │ ├── LGPL-3.0+_not_LGPL-3.0_or_BSD.txt │ │ │ │ ├── LGPL-3.0_or_BSD │ │ │ │ ├── LGPL_or_GPL.txt │ │ │ │ ├── MIT_or_GPL-3.0.txt │ │ │ │ ├── MIT_or_Python.txt │ │ │ │ ├── MODULE_LICENSE_BSD_GPL │ │ │ │ ├── Oracle+Sun_oracle_index.html │ │ │ │ ├── Perl_README │ │ │ │ ├── Perl_ref1 │ │ │ │ ├── Perl_ref2 │ │ │ │ ├── Perl_ref3 │ │ │ │ ├── Perl_ref4 │ │ │ │ ├── Perl_ref5 │ │ │ │ ├── Qt.Commercial_OR_BSD-2-Clause.txt │ │ │ │ ├── Qt.Commercial_OR_BSD-3-Clause.txt │ │ │ │ ├── README.hostapd │ │ │ │ ├── SPL-1.0_or_LGPL.txt │ │ │ │ ├── Sleepycat_or_Commercial.txt │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── aes-586.pl │ │ │ │ ├── aes.h │ │ │ │ ├── api.css_GPL_MIT │ │ │ │ ├── ashmem.h │ │ │ │ ├── asn1.c │ │ │ │ ├── bind.cpp │ │ │ │ ├── fuse_kernel.h │ │ │ │ ├── jquery.ui.core.js │ │ │ │ ├── lzf.c │ │ │ │ ├── mainpage.doxygen │ │ │ │ ├── mscc.c │ │ │ │ ├── plc.h │ │ │ │ ├── postgres_lic.txt │ │ │ │ ├── qhttp.cpp │ │ │ │ ├── respond.js │ │ │ │ ├── sarissa.js │ │ │ │ ├── smb.h │ │ │ │ └── xpmr.h │ │ │ ├── ECL │ │ │ │ ├── ECL-1.0.txt │ │ │ │ ├── ECL-2.0.txt │ │ │ │ ├── bufftest.c │ │ │ │ └── qt_sbtl_embedder.h │ │ │ ├── EDL │ │ │ │ ├── edl-v10 │ │ │ │ └── edl1.txt │ │ │ ├── EFL │ │ │ │ ├── EFL-1.0.txt │ │ │ │ ├── EFL-2.0.txt │ │ │ │ ├── epanel.h │ │ │ │ └── wel_image_list.h │ │ │ ├── EPL │ │ │ │ ├── DEPENDENCIES.txt │ │ │ │ ├── EPL-1.0.txt │ │ │ │ ├── EPL-2.0.txt │ │ │ │ ├── SampleGatherer.java │ │ │ │ ├── egPrerequisites.h │ │ │ │ ├── epl1-pom.xml │ │ │ │ └── filterscallbacks.h │ │ │ ├── EUDatagrid │ │ │ │ ├── EUDatagrid.txt │ │ │ │ └── scar_log.h │ │ │ ├── EUPL │ │ │ │ ├── EUPL-1.0.txt │ │ │ │ ├── EUPL-1.1.txt │ │ │ │ ├── EUPL-1.2.txt │ │ │ │ ├── async_log.c │ │ │ │ └── simRender.h │ │ │ ├── Entessa │ │ │ │ ├── CacheStorage.java │ │ │ │ └── Entessa.txt │ │ │ ├── ErlPL │ │ │ │ ├── ErlPL-1.1.txt │ │ │ │ └── decode_skip.h │ │ │ ├── FACE │ │ │ │ └── face_license.txt │ │ │ ├── FSF │ │ │ │ ├── FSF-and-GPL.txt │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── canonicalize-lgpl.m4 │ │ │ │ └── progtest.m4 │ │ │ ├── FTL │ │ │ │ ├── freetype.h │ │ │ │ ├── gxvfgen.c │ │ │ │ └── watcom.mk │ │ │ ├── Fair │ │ │ │ └── Fair.txt │ │ │ ├── Flora │ │ │ │ ├── Flora-1.0 │ │ │ │ ├── Flora-1.1 │ │ │ │ └── Flora-url │ │ │ ├── Frameworx │ │ │ │ └── Frameworx-1.0.txt │ │ │ ├── Freeware │ │ │ │ ├── Freeware_a.txt │ │ │ │ ├── Freeware_b.txt │ │ │ │ ├── Freeware_c.txt │ │ │ │ ├── Freeware_d.txt │ │ │ │ ├── Freeware_not_Public-domain.txt │ │ │ │ ├── GSM-COPYRIGHT-BSD-lite │ │ │ │ ├── Makefile.in.in │ │ │ │ ├── Soundex.xs │ │ │ │ ├── ac_define_dir.m4-BSD-lite │ │ │ │ ├── app_exec.c │ │ │ │ ├── basename.c │ │ │ │ ├── cblas.license │ │ │ │ ├── cidr.c │ │ │ │ ├── cpld.c │ │ │ │ ├── de_win.RC │ │ │ │ ├── dircolors.hin │ │ │ │ ├── dlfcn.h │ │ │ │ ├── drand48.c │ │ │ │ ├── fft4g.c │ │ │ │ ├── freeware-icu.txt │ │ │ │ ├── hyphenex.us │ │ │ │ ├── if_sppp.h │ │ │ │ ├── if_tun.h │ │ │ │ ├── lynxkdi.c │ │ │ │ ├── netical_wrap.c │ │ │ │ ├── newapa.sty │ │ │ │ ├── pg_dump.txt │ │ │ │ ├── plbasename.c │ │ │ │ ├── rules │ │ │ │ ├── s_erf.c │ │ │ │ ├── selog_err.c │ │ │ │ ├── snprintf.c │ │ │ │ ├── sparse_crc32.c │ │ │ │ ├── tclLoadAix.c │ │ │ │ ├── update-leap.in │ │ │ │ ├── vfs.c │ │ │ │ └── win_ce_semaphore.c │ │ │ ├── GFDL │ │ │ │ ├── GFDL-1.1.txt │ │ │ │ ├── GFDL-1.2+_OR_GPL-2.0+.txt │ │ │ │ ├── GFDL-1.2.txt │ │ │ │ ├── GFDL-1.3+.txt │ │ │ │ ├── GFDL-1.3.txt │ │ │ │ ├── license2.h │ │ │ │ └── wget.info-2 │ │ │ ├── GNU-Manpages │ │ │ │ └── GNU-Manpages.txt │ │ │ ├── GPL │ │ │ │ ├── 01.cc.GPL-2.0+ │ │ │ │ ├── 2064.md.GPL-2.0+ │ │ │ │ ├── 3w-xxxx.h.GPL-2.0 │ │ │ │ ├── 53c700_d.h_shipped.GPL-2.0+ │ │ │ │ ├── Address.java │ │ │ │ ├── Adler32.cs │ │ │ │ ├── Autoload.php │ │ │ │ ├── Boolean.cs │ │ │ │ ├── CFontz-charmap.h │ │ │ │ ├── COPYING.GPL-2.0 │ │ │ │ ├── COPYING_bug3207 │ │ │ │ ├── ConfigEnv.h │ │ │ │ ├── FSF-and-GPL.txt │ │ │ │ ├── FreeRTOS-license │ │ │ │ ├── FreeRTOS-license-ref1.txt │ │ │ │ ├── FreeRTOS-license-ref2.txt │ │ │ │ ├── FreeRTOS-license-ref3.txt │ │ │ │ ├── GPL-1.0.txt │ │ │ │ ├── GPL-1.0b.txt │ │ │ │ ├── GPL-2.0+-not-bison.txt │ │ │ │ ├── GPL-2.0+.txt │ │ │ │ ├── GPL-2.0+_a.txt │ │ │ │ ├── GPL-2.0+_abi-compliance-checker.pl │ │ │ │ ├── GPL-2.0+_and_LGPL-2.0+.txt │ │ │ │ ├── GPL-2.0+_b.txt │ │ │ │ ├── GPL-2.0+_c.txt │ │ │ │ ├── GPL-2.0+_d.txt │ │ │ │ ├── GPL-2.0+_e.txt │ │ │ │ ├── GPL-2.0+_f.txt │ │ │ │ ├── GPL-2.0+_g.txt │ │ │ │ ├── GPL-2.0+_with_OpenSSL-exception.txt │ │ │ │ ├── GPL-2.0+_with_linking-exception.txt │ │ │ │ ├── GPL-2.0-with-GCC-exception.txt │ │ │ │ ├── GPL-2.0-with-autoconf-exception.txt │ │ │ │ ├── GPL-2.0-with-bison-exception.txt │ │ │ │ ├── GPL-2.0-with-classpath-exception.txt │ │ │ │ ├── GPL-2.0-with-font-exception.txt │ │ │ │ ├── GPL-2.0.txt │ │ │ │ ├── GPL-2.0_a.txt │ │ │ │ ├── GPL-2.0_and_LGPL-2.1.txt │ │ │ │ ├── GPL-2.0_b.txt │ │ │ │ ├── GPL-2.0_c.txt │ │ │ │ ├── GPL-2.0_d.txt │ │ │ │ ├── GPL-2.0_e.txt │ │ │ │ ├── GPL-2.0_f.txt │ │ │ │ ├── GPL-2.0_g.txt │ │ │ │ ├── GPL-2.0_h.txt │ │ │ │ ├── GPL-2.0_i.txt │ │ │ │ ├── GPL-2.0_j.txt │ │ │ │ ├── GPL-2.0_k.txt │ │ │ │ ├── GPL-2.0_l.txt │ │ │ │ ├── GPL-2.0_reversed_version_ref │ │ │ │ ├── GPL-2.0_with_OpenSSL-exception.txt │ │ │ │ ├── GPL-2.0_with_OpenSSL-exception_2.txt │ │ │ │ ├── GPL-3.0+_WITH_Autoconf-exception-3.0.txt │ │ │ │ ├── GPL-3.0+_WITH_linking-exception.txt │ │ │ │ ├── GPL-3.0+_a.txt │ │ │ │ ├── GPL-3.0-with-GCC-exception.txt │ │ │ │ ├── GPL-3.0-with-autoconf-exception.txt │ │ │ │ ├── GPL-3.0-with-bison-exception │ │ │ │ ├── GPL-3.0.txt │ │ │ │ ├── GPL-3.0_c.txt │ │ │ │ ├── GPL-3.0b.txt │ │ │ │ ├── GPL-with-autoconf-exception │ │ │ │ ├── INSTALL.devcpp │ │ │ │ ├── InvalidHeaderException.cs │ │ │ │ ├── Jersey-LICENSE.txt │ │ │ │ ├── Kconfig │ │ │ │ ├── LICENSE │ │ │ │ ├── Oracle-foss-exception.txt │ │ │ │ ├── RelParser.cpp │ │ │ │ ├── Stats.java │ │ │ │ ├── StopComponentCommand.java │ │ │ │ ├── Timestamp.cc │ │ │ │ ├── UploadWizardCampaign.php │ │ │ │ ├── abft.h │ │ │ │ ├── abstractwidgetfactory.cpp │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── aha1740.c.GPLv2 │ │ │ │ ├── argparse.c │ │ │ │ ├── atp870u.c.GPLpossibility │ │ │ │ ├── ax_gcc_archflag.m4 │ │ │ │ ├── bitfield.h │ │ │ │ ├── bsam-license.php │ │ │ │ ├── cfg.c │ │ │ │ ├── clisp.cxx │ │ │ │ ├── cmdedit.c │ │ │ │ ├── cpio.spec │ │ │ │ ├── crtn.S │ │ │ │ ├── curve.c │ │ │ │ ├── dialogboundvalues.h │ │ │ │ ├── doxygen.sh │ │ │ │ ├── evd-pki-pubkey-lic.c │ │ │ │ ├── ext4_jbd2.h │ │ │ │ ├── fnmatch.h │ │ │ │ ├── frogr-picture-loader.h │ │ │ │ ├── frogr-util.c │ │ │ │ ├── gcc.c │ │ │ │ ├── gettext.m4 │ │ │ │ ├── gids.c │ │ │ │ ├── glacier.dts │ │ │ │ ├── gnu-md5.c │ │ │ │ ├── gnulib.mk │ │ │ │ ├── gpl-3.0.xml │ │ │ │ ├── gpl-test2.txt │ │ │ │ ├── gpl21_plus.txt │ │ │ │ ├── grecord.cpp │ │ │ │ ├── gtkmovelist.c │ │ │ │ ├── gwymath.c │ │ │ │ ├── json.nanorc │ │ │ │ ├── lua.nanorc │ │ │ │ ├── m_knock.c │ │ │ │ ├── missed_detection_of_GPL_v3_bug3093 │ │ │ │ ├── mysql-floss-exception.txt │ │ │ │ ├── mysql-floss-exception_ref_a.txt │ │ │ │ ├── nf_conntrack_h323_asn1.h │ │ │ │ ├── nomos-diff-GPLv2.php │ │ │ │ ├── outcommentedMODULE_LICENSE.txt │ │ │ │ ├── parser.c │ │ │ │ ├── passdb.c │ │ │ │ ├── pkg.c │ │ │ │ ├── pl.po │ │ │ │ ├── pmc_atom.c │ │ │ │ ├── ps_inspect.c │ │ │ │ ├── radrealms.c │ │ │ │ ├── save_particles_Point3D_format.h │ │ │ │ ├── serv_rssclient.c │ │ │ │ ├── server_monitor.py │ │ │ │ ├── standalone_html.inc.php │ │ │ │ ├── stddef.h │ │ │ │ ├── stdvga.c │ │ │ │ ├── sys-ecos.c │ │ │ │ ├── taskset.c │ │ │ │ ├── test-driver │ │ │ │ ├── test-file-4-GPL-2.0.c │ │ │ │ ├── test-file-4-GPL-3.0 │ │ │ │ ├── ttl.h │ │ │ │ ├── universal-foss-exception.txt │ │ │ │ ├── universal-foss-exception_url.txt │ │ │ │ ├── version.c │ │ │ │ ├── webserver.h │ │ │ │ └── zconf.tab.c │ │ │ ├── Giftware │ │ │ │ └── giftware.txt │ │ │ ├── Glide │ │ │ │ ├── test1.dtd │ │ │ │ └── test2.dtd │ │ │ ├── Google-BSD │ │ │ │ └── Google-BSD │ │ │ ├── Govt-rights │ │ │ │ └── Govt-rights.txt │ │ │ ├── HP │ │ │ │ ├── hp-snmp-pp.txt │ │ │ │ └── snmp_pp.cpp │ │ │ ├── HPND │ │ │ │ ├── HPND-sell-variant_a.txt │ │ │ │ ├── HPND-sell-variant_b.txt │ │ │ │ └── HPND.txt │ │ │ ├── HSQLDB │ │ │ │ ├── hsqldb-license │ │ │ │ ├── hsqldb-ref1.txt │ │ │ │ ├── hsqldb-ref2.txt │ │ │ │ ├── hsqldb-ref3.txt │ │ │ │ └── hsqldb-ref4.txt │ │ │ ├── IBM │ │ │ │ ├── IBM-MIT-style.txt │ │ │ │ ├── IBM-as-is.txt │ │ │ │ ├── IBM-dhcp.txt │ │ │ │ ├── IBM-pibs.txt │ │ │ │ └── IBM.Copyleft │ │ │ ├── ICU │ │ │ │ ├── ICU-license │ │ │ │ ├── ICU-license-2.txt │ │ │ │ ├── ICU-license-3.txt │ │ │ │ ├── ICU_ref_a.txt │ │ │ │ └── ICU_ref_b.txt │ │ │ ├── IETF │ │ │ │ ├── IETF.txt │ │ │ │ ├── IETF_Contributions.txt │ │ │ │ └── IETF_a.txt │ │ │ ├── IJG │ │ │ │ ├── IJG_ref_a.txt │ │ │ │ ├── IJG_ref_b.txt │ │ │ │ ├── header_netpbm.README_JPEG │ │ │ │ ├── jpeg.LICENSE │ │ │ │ └── license.html │ │ │ ├── IPA │ │ │ │ ├── IPA.txt │ │ │ │ └── Readme_ipag00303.txt │ │ │ ├── IPL │ │ │ │ ├── IBM_Public_License_1.0.htm │ │ │ │ ├── IPL-1.0.txt │ │ │ │ └── license.c │ │ │ ├── IPTC │ │ │ │ └── IPTC.txt │ │ │ ├── ISC │ │ │ │ ├── ISC-license-OSI │ │ │ │ ├── ISC.txt │ │ │ │ ├── ISC_and_MIT.txt │ │ │ │ ├── ISC_no_ISC_copyright.txt │ │ │ │ ├── ISC_ref_a.txt │ │ │ │ ├── chmod.c │ │ │ │ ├── classpath_and_ISC_and_IBM.txt │ │ │ │ ├── go-spew.txt │ │ │ │ ├── log.h │ │ │ │ └── package.json │ │ │ ├── ITU-T │ │ │ │ ├── ITU-T_General_Public_License.txt │ │ │ │ └── ITU-T_a.txt │ │ │ ├── Imlib2 │ │ │ │ └── Imlib2.text │ │ │ ├── InfoSeek │ │ │ │ └── InfoSeek.txt │ │ │ ├── InnerNet │ │ │ │ └── InnerNet-2.00 │ │ │ ├── Intel │ │ │ │ ├── INTEL-LICENSE.txt │ │ │ │ ├── INTEL-binary.txt │ │ │ │ ├── ISSL.txt │ │ │ │ ├── Intel-ACPI.txt │ │ │ │ ├── Intel-software-license-emgd-1.16 │ │ │ │ ├── README.ipw3945 │ │ │ │ ├── intel-536EP.install │ │ │ │ └── intel-wlan-license.txt │ │ │ ├── JISP │ │ │ │ └── Maze.h │ │ │ ├── JSON │ │ │ │ ├── jslint.js │ │ │ │ └── json-license.htm │ │ │ ├── JasPer │ │ │ │ └── JasPer-2.0.txt │ │ │ ├── Java-WSDL-Policy │ │ │ │ └── WS-Policy-Specification.txt │ │ │ ├── LDPL │ │ │ │ ├── LDPL-1a.txt │ │ │ │ ├── LDPL-2.0.txt │ │ │ │ └── LDPLref.txt │ │ │ ├── LGPL │ │ │ │ ├── AcroFields.java │ │ │ │ ├── Camellia-LGPL-2.1 │ │ │ │ ├── Deflater.hxx │ │ │ │ ├── GPL_false-positive_x_bug2307 │ │ │ │ ├── GPL_false-positive_y_bug2307 │ │ │ │ ├── LGPL-2.0+_WITH_GCC-exception.txt │ │ │ │ ├── LGPL-2.0+_ref_a.txt │ │ │ │ ├── LGPL-2.0.txt │ │ │ │ ├── LGPL-2.0_not_GPL.txt │ │ │ │ ├── LGPL-2.0b.txt │ │ │ │ ├── LGPL-2.1+_WITH_linking-exception.txt │ │ │ │ ├── LGPL-2.1+_ref_a.txt │ │ │ │ ├── LGPL-2.1+_ref_b.txt │ │ │ │ ├── LGPL-2.1+_ref_c.txt │ │ │ │ ├── LGPL-2.1.txt │ │ │ │ ├── LGPL-2.1_and_GPL-2.0.txt │ │ │ │ ├── LGPL-2.1_not_GPL-2.0.txt │ │ │ │ ├── LGPL-2.1b.txt │ │ │ │ ├── LGPL-3.0+_a.txt │ │ │ │ ├── LGPL-3.0+_and_GPL-2.0+.txt │ │ │ │ ├── LGPL-3.0+_not_GPL-3.0+.txt │ │ │ │ ├── LGPL-3.0.txt │ │ │ │ ├── LGPL-3.0b.txt │ │ │ │ ├── LGPL-3.0c.txt │ │ │ │ ├── LGPL-3.0d.txt │ │ │ │ ├── LGPL_16487.txt │ │ │ │ ├── LGPL_not_GPL.txt │ │ │ │ ├── License.rtf │ │ │ │ ├── README.rst │ │ │ │ ├── autoopts.c │ │ │ │ ├── defconfig │ │ │ │ ├── evd-pki-pubkey.c │ │ │ │ ├── fsp-parser.h │ │ │ │ ├── io-jpeg.c │ │ │ │ ├── main.cpp │ │ │ │ ├── openjdk-7-jre-headless_license.txt │ │ │ │ ├── parsenv2.hxx │ │ │ │ ├── tracker-class.c │ │ │ │ └── valaprojectgenerator.c │ │ │ ├── LIBGCJ │ │ │ │ └── natStringBuilder.cc │ │ │ ├── LPL │ │ │ │ ├── LPL-1.0.txt │ │ │ │ └── LPL-1.02.txt │ │ │ ├── LPPL │ │ │ │ ├── LPPL-1.0.txt │ │ │ │ ├── LPPL-1.1.txt │ │ │ │ ├── LPPL-1.2.txt │ │ │ │ ├── LPPL-1.3c.txt │ │ │ │ └── latex.4ht │ │ │ ├── Leptonica │ │ │ │ └── affine_reg.c │ │ │ ├── Libpng │ │ │ │ ├── Libpng.txt │ │ │ │ ├── Libpng_not_W3C-style.txt │ │ │ │ ├── libmng-2007.txt │ │ │ │ ├── libpng-2.0.txt │ │ │ │ └── makefile.intel │ │ │ ├── Logica │ │ │ │ └── logica.txt │ │ │ ├── MIT │ │ │ │ ├── BroadcomMIT │ │ │ │ ├── ImaginationMIT │ │ │ │ ├── KhronosMIT │ │ │ │ ├── MIT-0.txt │ │ │ │ ├── MIT-advertising.txt │ │ │ │ ├── MIT-enna.txt │ │ │ │ ├── MIT-feh.txt │ │ │ │ ├── MIT-ref_a.txt │ │ │ │ ├── MIT-ref_b.txt │ │ │ │ ├── MIT-ref_c.txt │ │ │ │ ├── MIT-ref_d.txt │ │ │ │ ├── MIT-ref_e.txt │ │ │ │ ├── MIT-ref_f.txt │ │ │ │ ├── MIT-ref_g.txt │ │ │ │ ├── MIT-ref_h.txt │ │ │ │ ├── MIT-ref_i.txt │ │ │ │ ├── MIT-ref_j.txt │ │ │ │ ├── MIT-ref_k.txt │ │ │ │ ├── MIT-style_a.txt │ │ │ │ ├── MIT-style_b.txt │ │ │ │ ├── MIT.json │ │ │ │ ├── MIT.txt │ │ │ │ ├── MITNFA.txt │ │ │ │ ├── MIT_2.txt │ │ │ │ ├── MIT_3.txt │ │ │ │ ├── MIT_and_BSD-3-Clause.txt │ │ │ │ ├── NIST-disclaimer.txt │ │ │ │ ├── Netizen.cc │ │ │ │ ├── WOL.txt │ │ │ │ ├── bsdandmit.txt │ │ │ │ ├── bsdormit.txt │ │ │ │ ├── crcalc.copyright │ │ │ │ ├── edit.c │ │ │ │ ├── ge_console.h │ │ │ │ ├── net.c │ │ │ │ ├── perl-Mozilla-LDAP.spec │ │ │ │ ├── privates.h │ │ │ │ ├── string.ts │ │ │ │ └── watch.c │ │ │ ├── MPL │ │ │ │ ├── License.txt │ │ │ │ ├── MPL-1.0.txt │ │ │ │ ├── MPL-1.1.txt │ │ │ │ ├── MPL-2.0-with-copyleft-exception.txt │ │ │ │ ├── MPL-2.0.txt │ │ │ │ ├── MPL-2.0_and_BSD-2-Clause.txt │ │ │ │ ├── MPL-2.0_not_MPL.txt │ │ │ │ ├── README │ │ │ │ ├── RabbitMQ.license │ │ │ │ ├── YUI-Compressor.txt │ │ │ │ ├── mozilla.xhtml │ │ │ │ ├── mpl │ │ │ │ ├── opl-1.0.txt │ │ │ │ └── webutil.js │ │ │ ├── MS │ │ │ │ ├── MS-LPL.txt │ │ │ │ ├── MS-PL.txt │ │ │ │ ├── MS-PL_Index.aspx │ │ │ │ ├── MS-PL_a.txt │ │ │ │ ├── MS-PL_b.txt │ │ │ │ ├── MS-PL_c.txt │ │ │ │ ├── MS-RL.txt │ │ │ │ ├── MicrosoftPermissiveLicense.rtf │ │ │ │ ├── MicrosoftReciprocalLicense.rtf │ │ │ │ ├── crtlicense.txt │ │ │ │ ├── linux-cdc-acm.inf │ │ │ │ └── linux.inf │ │ │ ├── MTLL │ │ │ │ └── MTLL.txt │ │ │ ├── MX4J │ │ │ │ └── MX4J-1.0 │ │ │ ├── MakeIndex │ │ │ │ └── MakeIndex.txt │ │ │ ├── Migemo │ │ │ │ └── Mgemo.txt │ │ │ ├── MirOS │ │ │ │ ├── MirOS.txt │ │ │ │ └── MirOS_2.txt │ │ │ ├── Motorola │ │ │ │ ├── Motorola-Mobile-SLA.txt │ │ │ │ └── Motorola.txt │ │ │ ├── Motosoto │ │ │ │ └── Motosoto.txt │ │ │ ├── Multics │ │ │ │ └── Multics.txt │ │ │ ├── Mup │ │ │ │ └── Mup.txt │ │ │ ├── NASA │ │ │ │ └── NASA-1.3.txt │ │ │ ├── NBPL │ │ │ │ └── NBPL-1.0 │ │ │ ├── NCSA │ │ │ │ ├── NCSA.txt │ │ │ │ ├── NCSA_ref_a.txt │ │ │ │ └── uiuc-ncsa.txt │ │ │ ├── NGPL │ │ │ │ └── NGPL.txt │ │ │ ├── NOSL │ │ │ │ └── nosl-1.0 │ │ │ ├── NOT-public-domain │ │ │ │ ├── Freeware_not_Public-domain.txt │ │ │ │ ├── README.OSS │ │ │ │ ├── gettext.m4 │ │ │ │ └── progtest.m4 │ │ │ ├── NPL │ │ │ │ ├── NPL-1.0 │ │ │ │ └── NPL-1.1 │ │ │ ├── NPOSL │ │ │ │ └── NPOSL-3.0.txt │ │ │ ├── NTP │ │ │ │ ├── NTP-0.txt │ │ │ │ ├── NTP-COPYRIGHT │ │ │ │ ├── NTP.txt │ │ │ │ └── ntp_a.txt │ │ │ ├── Naumen │ │ │ │ └── Naumen.txt │ │ │ ├── No_license_found │ │ │ │ ├── Ajax.js │ │ │ │ ├── ConfigRuleSet.class │ │ │ │ ├── GPL-Ghostscript_a.txt │ │ │ │ ├── GPL-Ghostscript_b.txt │ │ │ │ ├── No_BSD-possibility.txt │ │ │ │ ├── Not-LGPL.txt │ │ │ │ ├── XinhaCor.txt │ │ │ │ ├── about.json │ │ │ │ ├── aes-linetype-size-shape.r │ │ │ │ ├── dep.pl │ │ │ │ ├── gimp-file-extension.txt │ │ │ │ ├── ipl.h │ │ │ │ ├── java1.class │ │ │ │ ├── java2.class │ │ │ │ ├── pretest.dat │ │ │ │ ├── remote.html │ │ │ │ └── utf-8-bom.html │ │ │ ├── Nokia │ │ │ │ └── Nokia.txt │ │ │ ├── Non-profit │ │ │ │ ├── LICENSE.txt │ │ │ │ └── freeware.txt │ │ │ ├── None-failure │ │ │ │ └── badge_BuckleUp_L.png │ │ │ ├── NotreDame │ │ │ │ └── NotreDame-license.txt │ │ │ ├── Nvidia │ │ │ │ ├── Nvidia-EULA.txt │ │ │ │ ├── atom.c │ │ │ │ ├── copyright │ │ │ │ └── mix_transformer.py │ │ │ ├── OCLC │ │ │ │ └── OCLC-2.0.txt │ │ │ ├── ODC │ │ │ │ └── ODC-By-1.0.txt │ │ │ ├── ODbL │ │ │ │ ├── LICENSE.txt │ │ │ │ └── ODbL-1.0.txt │ │ │ ├── OFL │ │ │ │ ├── OFL-1.0.txt │ │ │ │ ├── OFL-1.1.txt │ │ │ │ ├── font-awesome-ie7.css │ │ │ │ ├── font-awesome.scss │ │ │ │ └── ubuntu-font-1.0.txt │ │ │ ├── OGC │ │ │ │ └── OGC-Software-Notice.txt │ │ │ ├── OGL │ │ │ │ ├── OGL-UK-1.0.txt │ │ │ │ ├── OGL-UK-2.0.txt │ │ │ │ └── OGL-UK-3.0.txt │ │ │ ├── OGTSL │ │ │ │ └── OGTSL.txt │ │ │ ├── OLDAP │ │ │ │ ├── OLDAP-2.8.txt │ │ │ │ ├── OpenLDAP-2.3 │ │ │ │ └── openldap.schema │ │ │ ├── OPL │ │ │ │ ├── OPL.tex │ │ │ │ └── opl-1.0 │ │ │ ├── OSF │ │ │ │ ├── OSF-style_a.txt │ │ │ │ └── OSF.txt │ │ │ ├── OSL │ │ │ │ ├── LICENSE.html │ │ │ │ ├── OSL-1.0.txt │ │ │ │ ├── OSL-1.1 │ │ │ │ ├── OSL-2.0.txt │ │ │ │ ├── OSL-2.1.txt │ │ │ │ └── OSL-3.0.txt │ │ │ ├── OZPLB │ │ │ │ ├── OZPLB-1.0.txt │ │ │ │ ├── OZPLB-1.1.txt │ │ │ │ └── OZPLB_ref_a.txt │ │ │ ├── OpenCASCADE │ │ │ │ ├── LICENSE │ │ │ │ ├── Open-CASCADE-Technology-Public-License-6.3 │ │ │ │ └── ShapeBuild_ReShape.ixx │ │ │ ├── OpenMap │ │ │ │ └── openmap.md │ │ │ ├── OpenSSL │ │ │ │ ├── OpenSSL.txt │ │ │ │ ├── OpenSSL_Nokia.txt │ │ │ │ ├── OpenSSL_ref_a.txt │ │ │ │ ├── OpenSSL_ref_b.txt │ │ │ │ ├── OpenSSL_ref_c.txt │ │ │ │ ├── OpenSSL_ref_d.txt │ │ │ │ ├── OpenSSL_ref_e.txt │ │ │ │ ├── OpenSSL_ref_f.txt │ │ │ │ ├── SSL_CTX_set_psk_client_callback.pod │ │ │ │ ├── SSLeay.txt │ │ │ │ ├── gost89.c │ │ │ │ ├── openssl.spec │ │ │ │ └── syslog-ng-ctl.c │ │ │ ├── Oracle-Berkeley-DB │ │ │ │ └── Oracle-Berkeley-DB.java │ │ │ ├── PDDL │ │ │ │ └── PDDL-1.0.txt │ │ │ ├── PHP │ │ │ │ ├── License.php │ │ │ │ ├── License3.01.php │ │ │ │ ├── PHP-2.02.txt │ │ │ │ ├── PHP-3.0.txt │ │ │ │ ├── PHP-3.01.txt │ │ │ │ ├── PHP-3.01_ref_a.txt │ │ │ │ ├── PHP-3.0_ref_a.txt │ │ │ │ └── license.txt │ │ │ ├── Postfix │ │ │ │ └── master_spawn.c │ │ │ ├── PostgreSQL │ │ │ │ ├── PostgreSQL.txt │ │ │ │ └── odbc_fdw.control │ │ │ ├── Princeton │ │ │ │ └── adj.dat │ │ │ ├── Public-domain │ │ │ │ ├── CC0-ref-a.txt │ │ │ │ ├── LzmaDec.c │ │ │ │ ├── PD-dedication.txt │ │ │ │ ├── Public-domain-ref.txt │ │ │ │ ├── Public-domain-ref_b.txt │ │ │ │ ├── ar_AE │ │ │ │ ├── biohazard.svg │ │ │ │ ├── bn.tex │ │ │ │ ├── copyright_waiver.txt │ │ │ │ ├── dirent.c │ │ │ │ ├── fitblk.c │ │ │ │ ├── nwlib.c │ │ │ │ └── zpipe.c │ │ │ ├── Python │ │ │ │ ├── BSD_and_CNRI-Python.txt │ │ │ │ ├── CNRI-Jython.txt │ │ │ │ ├── Jython.txt │ │ │ │ ├── Not-Python.txt │ │ │ │ ├── Python-2.0.txt │ │ │ │ ├── Python-2.0_ref_a.txt │ │ │ │ ├── crtlicense.txt │ │ │ │ └── hashlib.py │ │ │ ├── QPL │ │ │ │ └── QPL-1.0.txt │ │ │ ├── QT │ │ │ │ ├── LGPL-EXCEPTION.txt │ │ │ │ ├── LICENSE.GPL3-EXCEPT │ │ │ │ ├── Qt-GPL-Exception-1.0 │ │ │ │ ├── Qt.Commercial_OR_GPL-3.0+.txt │ │ │ │ ├── Qt.Commercial_OR_LGPL-2.1_WITH_exception.txt │ │ │ │ ├── header.GPL-EXCEPT │ │ │ │ └── printview.cpp │ │ │ ├── Qmail │ │ │ │ └── Qmail.txt │ │ │ ├── Qwt │ │ │ │ └── Qwt_ref_a.txt │ │ │ ├── RCSL │ │ │ │ └── RCSL_v3.0_a.txt │ │ │ ├── RHeCos │ │ │ │ └── RHeCos-1.1.txt │ │ │ ├── RPL │ │ │ │ └── RPL-1.5.txt │ │ │ ├── RPSL │ │ │ │ ├── RPSL-1.0.txt │ │ │ │ ├── RPSL_v1.0_a.txt │ │ │ │ └── RPSL_v1.0_b.txt │ │ │ ├── RSA-Cryptoki │ │ │ │ └── RSA-Cryptoki.txt │ │ │ ├── RSCPL │ │ │ │ └── RSCPL.txt │ │ │ ├── Ruby │ │ │ │ ├── Ruby.txt │ │ │ │ └── rdoc │ │ │ ├── SAX-PD │ │ │ │ └── SAX-PD.txt │ │ │ ├── SCEA │ │ │ │ └── SCEA-1.0.txt │ │ │ ├── SGI │ │ │ │ ├── SGI-B-1.1_accum.gl │ │ │ │ ├── SGI-B-2.0 │ │ │ │ ├── gl2.h │ │ │ │ └── sgi.txt │ │ │ ├── SISSL-1.2 │ │ │ │ └── SISSL-1.2.txt │ │ │ ├── SISSL │ │ │ │ ├── SISSL-1.2.txt │ │ │ │ └── SISSL.txt │ │ │ ├── SMLNJ │ │ │ │ └── assoc.java │ │ │ ├── SPDX │ │ │ │ ├── 0BSD │ │ │ │ ├── 389-exception │ │ │ │ ├── 389-exception.txt │ │ │ │ ├── AAL │ │ │ │ ├── ADSL │ │ │ │ ├── AFL-1.1 │ │ │ │ ├── AFL-1.2 │ │ │ │ ├── AFL-2.0 │ │ │ │ ├── AFL-2.1 │ │ │ │ ├── AFL-3.0 │ │ │ │ ├── AGPL-1.0 │ │ │ │ ├── AGPL-1.0+ │ │ │ │ ├── AGPL-1.0-only │ │ │ │ ├── AGPL-1.0-or-later │ │ │ │ ├── AGPL-3.0 │ │ │ │ ├── AGPL-3.0+ │ │ │ │ ├── AGPL-3.0-only │ │ │ │ ├── AGPL-3.0-or-later │ │ │ │ ├── AMDPLPA │ │ │ │ ├── AML │ │ │ │ ├── AMPAS │ │ │ │ ├── ANTLR-PD │ │ │ │ ├── APAFML │ │ │ │ ├── APL-1.0 │ │ │ │ ├── APSL-1.0 │ │ │ │ ├── APSL-1.1 │ │ │ │ ├── APSL-1.2 │ │ │ │ ├── APSL-2.0 │ │ │ │ ├── Abstyles │ │ │ │ ├── Adobe-2006 │ │ │ │ ├── Adobe-Glyph │ │ │ │ ├── Afmparse │ │ │ │ ├── Aladdin │ │ │ │ ├── Apache-1.0 │ │ │ │ ├── Apache-1.1 │ │ │ │ ├── Apache-2.0 │ │ │ │ ├── Artistic-1.0 │ │ │ │ ├── Artistic-1.0-Perl │ │ │ │ ├── Artistic-1.0-cl8 │ │ │ │ ├── Artistic-2.0 │ │ │ │ ├── Autoconf-exception-2.0 │ │ │ │ ├── Autoconf-exception-2.0.txt │ │ │ │ ├── Autoconf-exception-3.0 │ │ │ │ ├── Autoconf-exception-3.0.txt │ │ │ │ ├── BSD-1-Clause │ │ │ │ ├── BSD-2-Clause │ │ │ │ ├── BSD-2-Clause-FreeBSD │ │ │ │ ├── BSD-2-Clause-NetBSD │ │ │ │ ├── BSD-2-Clause-Patent │ │ │ │ ├── BSD-2-Clause-Views │ │ │ │ ├── BSD-3-Clause │ │ │ │ ├── BSD-3-Clause-Attribution │ │ │ │ ├── BSD-3-Clause-Clear │ │ │ │ ├── BSD-3-Clause-LBNL │ │ │ │ ├── BSD-3-Clause-No-Nuclear-License │ │ │ │ ├── BSD-3-Clause-No-Nuclear-License-2014 │ │ │ │ ├── BSD-3-Clause-No-Nuclear-Warranty │ │ │ │ ├── BSD-3-Clause-Open-MPI │ │ │ │ ├── BSD-4-Clause │ │ │ │ ├── BSD-4-Clause-UC │ │ │ │ ├── BSD-Protection │ │ │ │ ├── BSD-Source-Code │ │ │ │ ├── BSL-1.0 │ │ │ │ ├── Bahyph │ │ │ │ ├── Barr │ │ │ │ ├── Beerware │ │ │ │ ├── Bison-exception-2.2 │ │ │ │ ├── Bison-exception-2.2.txt │ │ │ │ ├── BitTorrent-1.0 │ │ │ │ ├── BitTorrent-1.1 │ │ │ │ ├── BlueOak-1.0.0 │ │ │ │ ├── BlueOak-1.0.0.txt │ │ │ │ ├── Bootloader-exception │ │ │ │ ├── Bootloader-exception.txt │ │ │ │ ├── Borceux │ │ │ │ ├── CAL-1.0 │ │ │ │ ├── CAL-1.0-Combined-Work-Exception │ │ │ │ ├── CATOSL-1.1 │ │ │ │ ├── CC-BY-1.0 │ │ │ │ ├── CC-BY-2.0 │ │ │ │ ├── CC-BY-2.5 │ │ │ │ ├── CC-BY-3.0 │ │ │ │ ├── CC-BY-3.0-AT │ │ │ │ ├── CC-BY-4.0 │ │ │ │ ├── CC-BY-NC-1.0 │ │ │ │ ├── CC-BY-NC-2.0 │ │ │ │ ├── CC-BY-NC-2.5 │ │ │ │ ├── CC-BY-NC-3.0 │ │ │ │ ├── CC-BY-NC-4.0 │ │ │ │ ├── CC-BY-NC-ND-1.0 │ │ │ │ ├── CC-BY-NC-ND-2.0 │ │ │ │ ├── CC-BY-NC-ND-2.5 │ │ │ │ ├── CC-BY-NC-ND-3.0 │ │ │ │ ├── CC-BY-NC-ND-3.0-IGO │ │ │ │ ├── CC-BY-NC-ND-4.0 │ │ │ │ ├── CC-BY-NC-SA-1.0 │ │ │ │ ├── CC-BY-NC-SA-2.0 │ │ │ │ ├── CC-BY-NC-SA-2.5 │ │ │ │ ├── CC-BY-NC-SA-3.0 │ │ │ │ ├── CC-BY-NC-SA-4.0 │ │ │ │ ├── CC-BY-ND-1.0 │ │ │ │ ├── CC-BY-ND-2.0 │ │ │ │ ├── CC-BY-ND-2.5 │ │ │ │ ├── CC-BY-ND-3.0 │ │ │ │ ├── CC-BY-ND-4.0 │ │ │ │ ├── CC-BY-SA-1.0 │ │ │ │ ├── CC-BY-SA-2.0 │ │ │ │ ├── CC-BY-SA-2.5 │ │ │ │ ├── CC-BY-SA-3.0 │ │ │ │ ├── CC-BY-SA-3.0-AT │ │ │ │ ├── CC-BY-SA-4.0 │ │ │ │ ├── CC-PDDC │ │ │ │ ├── CC0-1.0 │ │ │ │ ├── CDDL-1.0 │ │ │ │ ├── CDDL-1.1 │ │ │ │ ├── CDLA-Permissive-1.0 │ │ │ │ ├── CDLA-Sharing-1.0 │ │ │ │ ├── CECILL-1.0 │ │ │ │ ├── CECILL-1.1 │ │ │ │ ├── CECILL-2.0 │ │ │ │ ├── CECILL-2.1 │ │ │ │ ├── CECILL-B │ │ │ │ ├── CECILL-C │ │ │ │ ├── CERN-OHL-1.1 │ │ │ │ ├── CERN-OHL-1.1.txt │ │ │ │ ├── CERN-OHL-1.2 │ │ │ │ ├── CERN-OHL-1.2.txt │ │ │ │ ├── CERN-OHL-P-2.0 │ │ │ │ ├── CERN-OHL-S-2.0 │ │ │ │ ├── CERN-OHL-W-2.0 │ │ │ │ ├── CLISP-exception-2.0 │ │ │ │ ├── CLISP-exception-2.0.txt │ │ │ │ ├── CNRI-Jython │ │ │ │ ├── CNRI-Python │ │ │ │ ├── CNRI-Python-GPL-Compatible │ │ │ │ ├── CPAL-1.0 │ │ │ │ ├── CPL-1.0 │ │ │ │ ├── CPOL-1.02 │ │ │ │ ├── CUA-OPL-1.0 │ │ │ │ ├── Caldera │ │ │ │ ├── ClArtistic │ │ │ │ ├── Classpath-exception-2.0 │ │ │ │ ├── Classpath-exception-2.0.txt │ │ │ │ ├── Condor-1.1 │ │ │ │ ├── Crossword │ │ │ │ ├── CrystalStacker │ │ │ │ ├── Cube │ │ │ │ ├── D-FSL-1.0 │ │ │ │ ├── DOC │ │ │ │ ├── DSDP │ │ │ │ ├── DigiRule-FOSS-exception │ │ │ │ ├── DigiRule-FOSS-exception.txt │ │ │ │ ├── Dotseqn │ │ │ │ ├── ECL-1.0 │ │ │ │ ├── ECL-2.0 │ │ │ │ ├── EFL-1.0 │ │ │ │ ├── EFL-2.0 │ │ │ │ ├── EPICS │ │ │ │ ├── EPL-1.0 │ │ │ │ ├── EPL-2.0 │ │ │ │ ├── EUDatagrid │ │ │ │ ├── EUPL-1.0 │ │ │ │ ├── EUPL-1.1 │ │ │ │ ├── EUPL-1.2 │ │ │ │ ├── Entessa │ │ │ │ ├── ErlPL-1.1 │ │ │ │ ├── Eurosym │ │ │ │ ├── FLTK-exception │ │ │ │ ├── FLTK-exception.txt │ │ │ │ ├── FSFAP │ │ │ │ ├── FSFAP.txt │ │ │ │ ├── FSFUL │ │ │ │ ├── FSFUL.txt │ │ │ │ ├── FSFULLR │ │ │ │ ├── FSFULLR.txt │ │ │ │ ├── FTL │ │ │ │ ├── Fair │ │ │ │ ├── Fawkes-Runtime-exception │ │ │ │ ├── Fawkes-Runtime-exception.txt │ │ │ │ ├── Font-exception-2.0 │ │ │ │ ├── Font-exception-2.0.txt │ │ │ │ ├── Frameworx-1.0 │ │ │ │ ├── FreeImage │ │ │ │ ├── GCC-exception-2.0 │ │ │ │ ├── GCC-exception-2.0.txt │ │ │ │ ├── GCC-exception-3.1 │ │ │ │ ├── GCC-exception-3.1.txt │ │ │ │ ├── GFDL-1.1 │ │ │ │ ├── GFDL-1.1+ │ │ │ │ ├── GFDL-1.1-invariants-only │ │ │ │ ├── GFDL-1.1-invariants-or-later │ │ │ │ ├── GFDL-1.1-no-invariants-only │ │ │ │ ├── GFDL-1.1-no-invariants-or-later │ │ │ │ ├── GFDL-1.1-only │ │ │ │ ├── GFDL-1.1-or-later │ │ │ │ ├── GFDL-1.2 │ │ │ │ ├── GFDL-1.2+ │ │ │ │ ├── GFDL-1.2-invariants-only │ │ │ │ ├── GFDL-1.2-invariants-or-later │ │ │ │ ├── GFDL-1.2-no-invariants-only │ │ │ │ ├── GFDL-1.2-no-invariants-or-later │ │ │ │ ├── GFDL-1.2-only │ │ │ │ ├── GFDL-1.2-or-later │ │ │ │ ├── GFDL-1.3 │ │ │ │ ├── GFDL-1.3+ │ │ │ │ ├── GFDL-1.3-invariants-only │ │ │ │ ├── GFDL-1.3-invariants-or-later │ │ │ │ ├── GFDL-1.3-no-invariants-only │ │ │ │ ├── GFDL-1.3-no-invariants-or-later │ │ │ │ ├── GFDL-1.3-only │ │ │ │ ├── GFDL-1.3-or-later │ │ │ │ ├── GL2PS │ │ │ │ ├── GLWTPL │ │ │ │ ├── GPL-1.0 │ │ │ │ ├── GPL-1.0+ │ │ │ │ ├── GPL-1.0-only │ │ │ │ ├── GPL-1.0-or-later │ │ │ │ ├── GPL-2.0 │ │ │ │ ├── GPL-2.0+ │ │ │ │ ├── GPL-2.0-only │ │ │ │ ├── GPL-2.0-or-later │ │ │ │ ├── GPL-2.0-with-code.js │ │ │ │ ├── GPL-3.0 │ │ │ │ ├── GPL-3.0+ │ │ │ │ ├── GPL-3.0-only │ │ │ │ ├── GPL-3.0-or-later │ │ │ │ ├── Giftware │ │ │ │ ├── Glide │ │ │ │ ├── Glulxe │ │ │ │ ├── HPND │ │ │ │ ├── HPND-sell-variant │ │ │ │ ├── HaskellReport │ │ │ │ ├── Hippocratic-2.1 │ │ │ │ ├── IBM-pibs │ │ │ │ ├── ICU │ │ │ │ ├── IJG │ │ │ │ ├── IPA │ │ │ │ ├── IPL-1.0 │ │ │ │ ├── ISC │ │ │ │ ├── ImageMagick │ │ │ │ ├── Imlib2 │ │ │ │ ├── Info-ZIP │ │ │ │ ├── Intel │ │ │ │ ├── Intel-ACPI │ │ │ │ ├── Interbase-1.0 │ │ │ │ ├── JPNIC │ │ │ │ ├── JPNIC.txt │ │ │ │ ├── JSON │ │ │ │ ├── JasPer-2.0 │ │ │ │ ├── LAL-1.2 │ │ │ │ ├── LAL-1.3 │ │ │ │ ├── LGPL-2.0 │ │ │ │ ├── LGPL-2.0+ │ │ │ │ ├── LGPL-2.0-only │ │ │ │ ├── LGPL-2.0-or-later │ │ │ │ ├── LGPL-2.1 │ │ │ │ ├── LGPL-2.1+ │ │ │ │ ├── LGPL-2.1-only │ │ │ │ ├── LGPL-2.1-or-later │ │ │ │ ├── LGPL-3.0 │ │ │ │ ├── LGPL-3.0+ │ │ │ │ ├── LGPL-3.0-only │ │ │ │ ├── LGPL-3.0-or-later │ │ │ │ ├── LGPLLR │ │ │ │ ├── LLVM-exception │ │ │ │ ├── LLVM-exception.txt │ │ │ │ ├── LPL-1.0 │ │ │ │ ├── LPL-1.02 │ │ │ │ ├── LPPL-1.0 │ │ │ │ ├── LPPL-1.1 │ │ │ │ ├── LPPL-1.2 │ │ │ │ ├── LPPL-1.3a │ │ │ │ ├── LPPL-1.3c │ │ │ │ ├── LZMA-exception │ │ │ │ ├── LZMA-exception.txt │ │ │ │ ├── Latex2e │ │ │ │ ├── Leptonica │ │ │ │ ├── LiLiQ-P-1.1 │ │ │ │ ├── LiLiQ-R-1.1 │ │ │ │ ├── LiLiQ-Rplus-1.1 │ │ │ │ ├── Libpng │ │ │ │ ├── Libtool-exception │ │ │ │ ├── Libtool-exception.txt │ │ │ │ ├── Linux-OpenIB │ │ │ │ ├── Linux-syscall-note │ │ │ │ ├── Linux-syscall-note.txt │ │ │ │ ├── MIT │ │ │ │ ├── MIT-0 │ │ │ │ ├── MIT-CMU │ │ │ │ ├── MIT-advertising │ │ │ │ ├── MIT-enna │ │ │ │ ├── MIT-feh │ │ │ │ ├── MITNFA │ │ │ │ ├── MPL-1.0 │ │ │ │ ├── MPL-1.1 │ │ │ │ ├── MPL-2.0 │ │ │ │ ├── MPL-2.0-no-copyleft-exception │ │ │ │ ├── MPL-2.0_AND_BSD-2-Clause_AND_MIT_OR_Apache-2.0.txt │ │ │ │ ├── MS-PL │ │ │ │ ├── MS-RL │ │ │ │ ├── MTLL │ │ │ │ ├── MakeIndex │ │ │ │ ├── MirOS │ │ │ │ ├── Motosoto │ │ │ │ ├── MulanPSL-1.0 │ │ │ │ ├── MulanPSL-1.0.txt │ │ │ │ ├── MulanPSL-2.0 │ │ │ │ ├── Multics │ │ │ │ ├── Mup │ │ │ │ ├── NASA-1.3 │ │ │ │ ├── NBPL-1.0 │ │ │ │ ├── NCGL-UK-2.0 │ │ │ │ ├── NCSA │ │ │ │ ├── NGPL │ │ │ │ ├── NIST-PD │ │ │ │ ├── NIST-PD-fallback │ │ │ │ ├── NLOD-1.0 │ │ │ │ ├── NLPL │ │ │ │ ├── NOSL │ │ │ │ ├── NPL-1.0 │ │ │ │ ├── NPL-1.1 │ │ │ │ ├── NPOSL-3.0 │ │ │ │ ├── NRL │ │ │ │ ├── NTP │ │ │ │ ├── NTP-0 │ │ │ │ ├── Naumen │ │ │ │ ├── Net-SNMP │ │ │ │ ├── NetCDF │ │ │ │ ├── Newsletr │ │ │ │ ├── Nokia │ │ │ │ ├── Nokia-Qt-exception-1.1 │ │ │ │ ├── Nokia-Qt-exception-1.1.txt │ │ │ │ ├── Noweb │ │ │ │ ├── Nunit │ │ │ │ ├── O-UDA-1.0 │ │ │ │ ├── OCCT-PL │ │ │ │ ├── OCCT-exception-1.0 │ │ │ │ ├── OCCT-exception-1.0.txt │ │ │ │ ├── OCLC-2.0 │ │ │ │ ├── ODC-By-1.0 │ │ │ │ ├── ODbL-1.0 │ │ │ │ ├── OFL-1.0 │ │ │ │ ├── OFL-1.0-RFN │ │ │ │ ├── OFL-1.0-no-RFN │ │ │ │ ├── OFL-1.1 │ │ │ │ ├── OFL-1.1-RFN │ │ │ │ ├── OFL-1.1-no-RFN │ │ │ │ ├── OGC-1.0 │ │ │ │ ├── OGL-Canada-2.0 │ │ │ │ ├── OGL-UK-1.0 │ │ │ │ ├── OGL-UK-2.0 │ │ │ │ ├── OGL-UK-3.0 │ │ │ │ ├── OGTSL │ │ │ │ ├── OLDAP-1.1 │ │ │ │ ├── OLDAP-1.2 │ │ │ │ ├── OLDAP-1.3 │ │ │ │ ├── OLDAP-1.4 │ │ │ │ ├── OLDAP-2.0 │ │ │ │ ├── OLDAP-2.0.1 │ │ │ │ ├── OLDAP-2.1 │ │ │ │ ├── OLDAP-2.2 │ │ │ │ ├── OLDAP-2.2.1 │ │ │ │ ├── OLDAP-2.2.2 │ │ │ │ ├── OLDAP-2.3 │ │ │ │ ├── OLDAP-2.4 │ │ │ │ ├── OLDAP-2.5 │ │ │ │ ├── OLDAP-2.6 │ │ │ │ ├── OLDAP-2.7 │ │ │ │ ├── OLDAP-2.8 │ │ │ │ ├── OML │ │ │ │ ├── OPL-1.0 │ │ │ │ ├── OSET-PL-2.1 │ │ │ │ ├── OSL-1.0 │ │ │ │ ├── OSL-1.1 │ │ │ │ ├── OSL-2.0 │ │ │ │ ├── OSL-2.1 │ │ │ │ ├── OSL-3.0 │ │ │ │ ├── OpenJDK-assembly-exception-1.0 │ │ │ │ ├── OpenJDK-assembly-exception-1.0.txt │ │ │ │ ├── OpenSSL │ │ │ │ ├── PDDL-1.0 │ │ │ │ ├── PHP-3.0 │ │ │ │ ├── PHP-3.01 │ │ │ │ ├── PSF-2.0 │ │ │ │ ├── Parity-6.0.0 │ │ │ │ ├── Parity-7.0.0 │ │ │ │ ├── Plexus │ │ │ │ ├── PolyForm-Noncommercial-1.0.0 │ │ │ │ ├── PolyForm-Small-Business-1.0.0 │ │ │ │ ├── PostgreSQL │ │ │ │ ├── Python-2.0 │ │ │ │ ├── QPL-1.0 │ │ │ │ ├── Qhull │ │ │ │ ├── Qhull.txt │ │ │ │ ├── Qwt-exception-1.0 │ │ │ │ ├── Qwt-exception-1.0.txt │ │ │ │ ├── RHeCos-1.1 │ │ │ │ ├── RPL-1.1 │ │ │ │ ├── RPL-1.5 │ │ │ │ ├── RPSL-1.0 │ │ │ │ ├── RSA-MD │ │ │ │ ├── RSCPL │ │ │ │ ├── Rdisc │ │ │ │ ├── Ruby │ │ │ │ ├── SAX-PD │ │ │ │ ├── SCEA │ │ │ │ ├── SGI-B-1.0 │ │ │ │ ├── SGI-B-1.1 │ │ │ │ ├── SGI-B-2.0 │ │ │ │ ├── SHL-0.5 │ │ │ │ ├── SHL-0.51 │ │ │ │ ├── SISSL │ │ │ │ ├── SISSL-1.2 │ │ │ │ ├── SMLNJ │ │ │ │ ├── SMPPL │ │ │ │ ├── SNIA │ │ │ │ ├── SPL-1.0 │ │ │ │ ├── SSH-OpenSSH │ │ │ │ ├── SSH-OpenSSH.txt │ │ │ │ ├── SSH-short │ │ │ │ ├── SSH-short.txt │ │ │ │ ├── SSPL-1.0 │ │ │ │ ├── SWL │ │ │ │ ├── Saxpath │ │ │ │ ├── Sendmail │ │ │ │ ├── Sendmail-8.23 │ │ │ │ ├── SimPL-2.0 │ │ │ │ ├── Sleepycat │ │ │ │ ├── Spencer-86 │ │ │ │ ├── Spencer-86.txt │ │ │ │ ├── Spencer-94 │ │ │ │ ├── Spencer-99 │ │ │ │ ├── Spencer-99.txt │ │ │ │ ├── SugarCRM-1.1.3 │ │ │ │ ├── TAPR-OHL-1.0 │ │ │ │ ├── TCL │ │ │ │ ├── TCP-wrappers │ │ │ │ ├── TMate │ │ │ │ ├── TORQUE-1.1 │ │ │ │ ├── TOSL │ │ │ │ ├── TU-Berlin-1.0 │ │ │ │ ├── TU-Berlin-2.0 │ │ │ │ ├── UCL-1.0 │ │ │ │ ├── UPL-1.0 │ │ │ │ ├── Unicode-DFS-2015 │ │ │ │ ├── Unicode-DFS-2016 │ │ │ │ ├── Unicode-TOU │ │ │ │ ├── Unlicense │ │ │ │ ├── VOSTROM │ │ │ │ ├── VSL-1.0 │ │ │ │ ├── Vim │ │ │ │ ├── W3C │ │ │ │ ├── W3C-19980720 │ │ │ │ ├── W3C-20150513 │ │ │ │ ├── WTFPL │ │ │ │ ├── Watcom-1.0 │ │ │ │ ├── Wsuipa │ │ │ │ ├── WxWindows-exception-3.1 │ │ │ │ ├── WxWindows-exception-3.1.txt │ │ │ │ ├── X11 │ │ │ │ ├── XFree86-1.1 │ │ │ │ ├── XSkat │ │ │ │ ├── Xerox │ │ │ │ ├── Xnet │ │ │ │ ├── YPL-1.0 │ │ │ │ ├── YPL-1.1 │ │ │ │ ├── ZPL-1.1 │ │ │ │ ├── ZPL-2.0 │ │ │ │ ├── ZPL-2.1 │ │ │ │ ├── Zed │ │ │ │ ├── Zend-2.0 │ │ │ │ ├── Zimbra-1.3 │ │ │ │ ├── Zimbra-1.4 │ │ │ │ ├── Zlib │ │ │ │ ├── blessing │ │ │ │ ├── bzip2-1.0.5 │ │ │ │ ├── bzip2-1.0.6 │ │ │ │ ├── copyleft-next-0.3.0 │ │ │ │ ├── copyleft-next-0.3.1 │ │ │ │ ├── curl │ │ │ │ ├── diffmark │ │ │ │ ├── dvipdfm │ │ │ │ ├── eCos-exception-2.0 │ │ │ │ ├── eCos-exception-2.0.txt │ │ │ │ ├── eGenix │ │ │ │ ├── etalab-2.0 │ │ │ │ ├── freertos-exception-2.0 │ │ │ │ ├── freertos-exception-2.0.txt │ │ │ │ ├── gSOAP-1.3b │ │ │ │ ├── gnu-javamail-exception │ │ │ │ ├── gnu-javamail-exception.txt │ │ │ │ ├── gnuplot │ │ │ │ ├── i2p-gpl-java-exception │ │ │ │ ├── i2p-gpl-java-exception.txt │ │ │ │ ├── iMatix │ │ │ │ ├── libpng-2.0 │ │ │ │ ├── libselinux-1.0 │ │ │ │ ├── libtiff │ │ │ │ ├── mif-exception │ │ │ │ ├── mif-exception.txt │ │ │ │ ├── mpich2 │ │ │ │ ├── openvpn-openssl-exception │ │ │ │ ├── openvpn-openssl-exception.txt │ │ │ │ ├── psfrag │ │ │ │ ├── psutils │ │ │ │ ├── u-boot-exception-2.0 │ │ │ │ ├── u-boot-exception-2.0.txt │ │ │ │ ├── xinetd │ │ │ │ ├── xpp │ │ │ │ └── zlib-acknowledgement │ │ │ ├── See-doc │ │ │ │ ├── DOMAttrImpl.java │ │ │ │ ├── catalog.h │ │ │ │ ├── command.h │ │ │ │ ├── copyright_ref.txt │ │ │ │ ├── cpl.pp │ │ │ │ ├── http.h │ │ │ │ ├── init.8 │ │ │ │ ├── libmng_filter.c │ │ │ │ ├── lualib.h │ │ │ │ ├── mic.h │ │ │ │ └── xmlsec.c │ │ │ ├── See-file │ │ │ │ ├── Connection.java │ │ │ │ ├── ContainerRuntimeLoaderTest.php │ │ │ │ ├── FlGui.cpp │ │ │ │ ├── MPIController.cxx │ │ │ │ ├── PhotoQuery.cs │ │ │ │ ├── README.txt │ │ │ │ ├── See-file_COPYING_a.txt │ │ │ │ ├── See-file_LICENSE_a │ │ │ │ ├── See-file_LICENSE_b │ │ │ │ ├── XmlPullParser.java │ │ │ │ ├── ad_testfs_close.c │ │ │ │ ├── bzip2.c │ │ │ │ ├── camd_dump.c │ │ │ │ ├── client.go │ │ │ │ ├── clip_tbl.c │ │ │ │ ├── connection.h │ │ │ │ ├── dimoopx.cc │ │ │ │ ├── fetmainform.cpp │ │ │ │ ├── findme.c │ │ │ │ ├── ftrace.c │ │ │ │ ├── gdcmServiceClassUser.cxx │ │ │ │ ├── itkAffineTransform.h │ │ │ │ ├── jcparam.c │ │ │ │ ├── json.c │ │ │ │ ├── ldapmodule.c │ │ │ │ ├── main.c │ │ │ │ ├── mhstatus.c │ │ │ │ ├── mmu_context.c │ │ │ │ ├── perf_event.c │ │ │ │ ├── play.h │ │ │ │ ├── pngget.c │ │ │ │ ├── popt_options.h │ │ │ │ ├── prng4.js │ │ │ │ ├── qla_version.h │ │ │ │ ├── qlcnic_ctx.c │ │ │ │ ├── qlge.h │ │ │ │ ├── revoco.h │ │ │ │ ├── rtctype.h │ │ │ │ ├── seeurl.txt │ │ │ │ ├── segformer.py │ │ │ │ ├── sel_util.c │ │ │ │ ├── util.h │ │ │ │ └── zlib.ads │ │ │ ├── Sendmail │ │ │ │ ├── Sendmail │ │ │ │ ├── Sendmail-8.23.txt │ │ │ │ └── snpf.c │ │ │ ├── SimPL │ │ │ │ └── SimPL-2.0.txt │ │ │ ├── Sleepycat │ │ │ │ ├── Sleepycat.txt │ │ │ │ └── sleepycat.php │ │ │ ├── SugarCRM │ │ │ │ └── SugarCRM-1.1.3.txt │ │ │ ├── Sun │ │ │ │ ├── 24AF6529.license │ │ │ │ ├── SPL-1.0.txt │ │ │ │ ├── Sun.RPC.txt │ │ │ │ ├── Sun_a.txt │ │ │ │ ├── Sun_b.txt │ │ │ │ └── sissl-1.1 │ │ │ ├── TCL │ │ │ │ ├── TCL_a.txt │ │ │ │ ├── TCL_b.txt │ │ │ │ └── TCL_c.txt │ │ │ ├── TMate │ │ │ │ ├── TMate.txt │ │ │ │ └── TMate_a.txt │ │ │ ├── TU-Berlin │ │ │ │ ├── TU-Berlin-1.0.txt │ │ │ │ └── TU-Berlin-2.0.txt │ │ │ ├── Tapjoy │ │ │ │ └── Tapjoy.txt │ │ │ ├── Toolbar │ │ │ │ ├── Toolbar2000.txt │ │ │ │ └── Toolbar2000_or_GPL.txt │ │ │ ├── Trademark-ref │ │ │ │ └── 53c7xx.c │ │ │ ├── TrueCrypt │ │ │ │ └── truecrypt.txt │ │ │ ├── U-Cambridge │ │ │ │ ├── MSNTP.txt │ │ │ │ └── U-Cambridge.txt │ │ │ ├── UCAR │ │ │ │ └── UCAR.txt │ │ │ ├── UnboundID │ │ │ │ └── UnboundID-LDAP-SDK.txt │ │ │ ├── UnclassifiedLicense │ │ │ │ ├── IPA.cpp │ │ │ │ ├── LICENSE.fatfs │ │ │ │ ├── README.win64.txt │ │ │ │ ├── config.isc │ │ │ │ ├── cygwinRef.txt │ │ │ │ ├── eula.txt │ │ │ │ ├── isc.h │ │ │ │ ├── ldapbaseauthenticationprovider.inc.php │ │ │ │ ├── license.all.html.in │ │ │ │ ├── net_phy_def.h │ │ │ │ └── port.h │ │ │ ├── Unicode │ │ │ │ ├── Scripts.txt │ │ │ │ ├── Unicode-TOU.txt │ │ │ │ ├── Unicode-TOU_ref_a.txt │ │ │ │ ├── Unicode-TOU_ref_b.txt │ │ │ │ └── Unicode_Exhibit_1.txt │ │ │ ├── Unidex │ │ │ │ └── unidex.txt │ │ │ ├── Unlicense │ │ │ │ └── bitcoin.php │ │ │ ├── VSL │ │ │ │ └── VSL-1.0.txt │ │ │ ├── Vim │ │ │ │ ├── Vim.txt │ │ │ │ ├── Vim_a.txt │ │ │ │ └── Vim_b.txt │ │ │ ├── Vixie │ │ │ │ └── user.c │ │ │ ├── W3C │ │ │ │ ├── W3C-19980720.txt │ │ │ │ ├── W3C-20150513.txt │ │ │ │ ├── W3C-License.html │ │ │ │ ├── W3C-ref_a.txt │ │ │ │ ├── W3C-ref_b.txt │ │ │ │ └── W3C.txt │ │ │ ├── WTFPL │ │ │ │ ├── package.json │ │ │ │ ├── random.h │ │ │ │ └── wtfpl.c │ │ │ ├── WXwindows │ │ │ │ ├── License_wxWindows.txt │ │ │ │ ├── WXwindows.txt │ │ │ │ ├── setup.h │ │ │ │ └── wxWindows-3.1+_ref.txt │ │ │ ├── Watcom │ │ │ │ └── Watcom-1.0.txt │ │ │ ├── WebM │ │ │ │ └── alpha.c │ │ │ ├── WordNet │ │ │ │ └── WordNet.txt │ │ │ ├── X11 │ │ │ │ ├── X11-OpenGroup_a.txt │ │ │ │ ├── X11-OpenGroup_b.txt │ │ │ │ ├── X11-SGI │ │ │ │ ├── X11-Tektronix │ │ │ │ ├── bk4r1.dts │ │ │ │ └── x11-license.html │ │ │ ├── XFree86 │ │ │ │ ├── LICENSE.XFree86.1.0 │ │ │ │ ├── XFree86-1.1.txt │ │ │ │ └── license_XFree86.txt │ │ │ ├── XMLDB │ │ │ │ └── SimpleBinaryResource.java │ │ │ ├── Xnet │ │ │ │ └── Xnet.txt │ │ │ ├── YPL-1.0 │ │ │ │ └── YPL-1.0.txt │ │ │ ├── YPL │ │ │ │ ├── YPL-1.0.txt │ │ │ │ ├── YPL-1.1.txt │ │ │ │ ├── YPL-1.1b.txt │ │ │ │ └── preamble-YPL-WebClient.txt │ │ │ ├── ZPL │ │ │ │ ├── ZPL-1.0.txt │ │ │ │ ├── ZPL-1.1.txt │ │ │ │ ├── ZPL-2.0.txt │ │ │ │ ├── ZPL-2.1.txt │ │ │ │ └── python-psycopg_license.txt │ │ │ ├── Zeus │ │ │ │ └── Zeus.txt │ │ │ ├── Zimbra │ │ │ │ ├── Zimbra-1.3.txt │ │ │ │ └── sugarcrm.js │ │ │ ├── Zlib │ │ │ │ ├── OSIzlibLicense-2006-10-31 │ │ │ │ ├── Spencer-94.txt │ │ │ │ ├── Zlib.txt │ │ │ │ ├── blast.c │ │ │ │ ├── util.cpp │ │ │ │ ├── zlibLicense-1.2.2-2004-Oct-03 │ │ │ │ ├── zlib_ref_a.txt │ │ │ │ └── zutil.h │ │ │ ├── copyleft-next │ │ │ │ ├── CLN-0.3.0_and_ISC.txt │ │ │ │ ├── copyleft-next-0.3.0.txt │ │ │ │ ├── copyleft-next-0.3.1.txt │ │ │ │ └── copyleft-next-0.3.1_a.txt │ │ │ ├── curl │ │ │ │ ├── curl.txt │ │ │ │ └── curl_a.txt │ │ │ ├── eCos │ │ │ │ ├── Cygnus-eCos-1.0.txt │ │ │ │ ├── eCos-2.0.txt │ │ │ │ ├── ecos.texi │ │ │ │ └── lcd.c │ │ │ ├── gSOAP │ │ │ │ ├── gSOAP-1.3b.txt │ │ │ │ └── wsdx.h │ │ │ ├── gnuplot │ │ │ │ └── gnuplot.txt │ │ │ ├── info-zip │ │ │ │ └── unzip.c │ │ │ ├── libtiff │ │ │ │ ├── libtiff-style_a.txt │ │ │ │ ├── libtiff-style_b.txt │ │ │ │ ├── libtiff.txt │ │ │ │ ├── libtiff_no_IJG.txt │ │ │ │ └── libtiff_ref_a.txt │ │ │ ├── mpich2 │ │ │ │ └── mpich2.txt │ │ │ ├── naist │ │ │ │ └── naist-2003.txt │ │ │ └── package_defs │ │ │ │ ├── 0BSD.pom │ │ │ │ ├── AAL.pom │ │ │ │ ├── ADSL.pom │ │ │ │ ├── AFL-1.1.pom │ │ │ │ ├── AFL-1.2.pom │ │ │ │ ├── AFL-2.0.pom │ │ │ │ ├── AFL-2.1.pom │ │ │ │ ├── AFL-3.0.pom │ │ │ │ ├── AGPL-1.0+.composer │ │ │ │ ├── AGPL-1.0+.npm │ │ │ │ ├── AGPL-1.0+.pom │ │ │ │ ├── AGPL-1.0-only.pom │ │ │ │ ├── AGPL-1.0-or-later.pom │ │ │ │ ├── AGPL-1.0.pom │ │ │ │ ├── AGPL-3.0+.composer │ │ │ │ ├── AGPL-3.0+.npm │ │ │ │ ├── AGPL-3.0+.pom │ │ │ │ ├── AGPL-3.0-or-later.pom │ │ │ │ ├── AMDPLPA.pom │ │ │ │ ├── AML.pom │ │ │ │ ├── AMPAS.pom │ │ │ │ ├── ANTLR-PD.pom │ │ │ │ ├── APAFML.pom │ │ │ │ ├── APL-1.0.pom │ │ │ │ ├── APSL-1.0.pom │ │ │ │ ├── APSL-1.1.pom │ │ │ │ ├── APSL-1.2.pom │ │ │ │ ├── APSL-2.0.pom │ │ │ │ ├── Abstyles.pom │ │ │ │ ├── Adobe-2006.pom │ │ │ │ ├── Adobe-Glyph.pom │ │ │ │ ├── Afmparse.pom │ │ │ │ ├── Aladdin.pom │ │ │ │ ├── Apache-1.0.pom │ │ │ │ ├── Apache-1.1.pom │ │ │ │ ├── Artistic-1.0-Perl.pom │ │ │ │ ├── Artistic-1.0-cl8.pom │ │ │ │ ├── Artistic-1.0.pom │ │ │ │ ├── Artistic-2.0.pom │ │ │ │ ├── BSD-1-Clause.composer │ │ │ │ ├── BSD-1-Clause.npm │ │ │ │ ├── BSD-1-Clause.pom │ │ │ │ ├── BSD-2-Clause-FreeBSD.pom │ │ │ │ ├── BSD-2-Clause-NetBSD.pom │ │ │ │ ├── BSD-2-Clause-Patent.pom │ │ │ │ ├── BSD-3-Clause-Attribution.pom │ │ │ │ ├── BSD-3-Clause-Clear.pom │ │ │ │ ├── BSD-3-Clause-LBNL.pom │ │ │ │ ├── BSD-3-Clause-No-Nuclear-License-2014.pom │ │ │ │ ├── BSD-3-Clause-No-Nuclear-License.pom │ │ │ │ ├── BSD-3-Clause-No-Nuclear-Warranty.pom │ │ │ │ ├── BSD-4-Clause-UC.pom │ │ │ │ ├── BSD-Protection.composer │ │ │ │ ├── BSD-Protection.npm │ │ │ │ ├── BSD-Protection.pom │ │ │ │ ├── BSD-Source-Code.composer │ │ │ │ ├── BSD-Source-Code.npm │ │ │ │ ├── BSD-Source-Code.pom │ │ │ │ ├── BSL-1.0.pom │ │ │ │ ├── Bahyph.pom │ │ │ │ ├── Barr.pom │ │ │ │ ├── Beerware.pom │ │ │ │ ├── BitTorrent-1.0.pom │ │ │ │ ├── BitTorrent-1.1.pom │ │ │ │ ├── Borceux.pom │ │ │ │ ├── CATOSL-1.1.pom │ │ │ │ ├── CC-BY-1.0.pom │ │ │ │ ├── CC-BY-2.0.pom │ │ │ │ ├── CC-BY-2.5.pom │ │ │ │ ├── CC-BY-3.0.pom │ │ │ │ ├── CC-BY-4.0.pom │ │ │ │ ├── CC-BY-NC-1.0.pom │ │ │ │ ├── CC-BY-NC-2.0.pom │ │ │ │ ├── CC-BY-NC-2.5.pom │ │ │ │ ├── CC-BY-NC-3.0.pom │ │ │ │ ├── CC-BY-NC-4.0.pom │ │ │ │ ├── CC-BY-NC-ND-1.0.pom │ │ │ │ ├── CC-BY-NC-ND-2.0.pom │ │ │ │ ├── CC-BY-NC-ND-2.5.pom │ │ │ │ ├── CC-BY-NC-ND-3.0.pom │ │ │ │ ├── CC-BY-NC-ND-4.0.pom │ │ │ │ ├── CC-BY-NC-SA-1.0.pom │ │ │ │ ├── CC-BY-NC-SA-2.0.pom │ │ │ │ ├── CC-BY-NC-SA-2.5.pom │ │ │ │ ├── CC-BY-NC-SA-3.0.pom │ │ │ │ ├── CC-BY-NC-SA-4.0.pom │ │ │ │ ├── CC-BY-ND-1.0.pom │ │ │ │ ├── CC-BY-ND-2.0.pom │ │ │ │ ├── CC-BY-ND-2.5.pom │ │ │ │ ├── CC-BY-ND-3.0.pom │ │ │ │ ├── CC-BY-ND-4.0.pom │ │ │ │ ├── CC-BY-SA-1.0.pom │ │ │ │ ├── CC-BY-SA-2.0.pom │ │ │ │ ├── CC-BY-SA-2.5.pom │ │ │ │ ├── CC-BY-SA-3.0.pom │ │ │ │ ├── CC-BY-SA-4.0.pom │ │ │ │ ├── CDDL-1.0.pom │ │ │ │ ├── CDDL-1.1.pom │ │ │ │ ├── CDLA-Permissive-1.0.pom │ │ │ │ ├── CDLA-Sharing-1.0.pom │ │ │ │ ├── CECILL-1.0.pom │ │ │ │ ├── CECILL-1.1.pom │ │ │ │ ├── CECILL-2.0.pom │ │ │ │ ├── CECILL-2.1.pom │ │ │ │ ├── CECILL-B.pom │ │ │ │ ├── CECILL-C.pom │ │ │ │ ├── CNRI-Jython.pom │ │ │ │ ├── CNRI-Python-GPL-Compatible.pom │ │ │ │ ├── CNRI-Python.pom │ │ │ │ ├── CPAL-1.0.pom │ │ │ │ ├── CPL-1.0.pom │ │ │ │ ├── CPOL-1.02.pom │ │ │ │ ├── CUA-OPL-1.0.pom │ │ │ │ ├── Caldera.pom │ │ │ │ ├── ClArtistic.pom │ │ │ │ ├── Condor-1.1.pom │ │ │ │ ├── Crossword.pom │ │ │ │ ├── CrystalStacker.pom │ │ │ │ ├── Cube.pom │ │ │ │ ├── D-FSL-1.0.pom │ │ │ │ ├── DOC.composer │ │ │ │ ├── DOC.pom │ │ │ │ ├── DSDP.pom │ │ │ │ ├── Dotseqn.pom │ │ │ │ ├── ECL-1.0.pom │ │ │ │ ├── ECL-2.0.pom │ │ │ │ ├── EFL-1.0.pom │ │ │ │ ├── EFL-2.0.pom │ │ │ │ ├── EPL-1.0.pom │ │ │ │ ├── EPL-2.0.pom │ │ │ │ ├── EUDatagrid.pom │ │ │ │ ├── EUPL-1.0.pom │ │ │ │ ├── EUPL-1.1.pom │ │ │ │ ├── EUPL-1.2.pom │ │ │ │ ├── Entessa.pom │ │ │ │ ├── ErlPL-1.1.pom │ │ │ │ ├── Eurosym.pom │ │ │ │ ├── FSFAP.pom │ │ │ │ ├── FSFUL.pom │ │ │ │ ├── FSFULLR.pom │ │ │ │ ├── FTL.pom │ │ │ │ ├── Fair.composer │ │ │ │ ├── Fair.pom │ │ │ │ ├── Frameworx-1.0.pom │ │ │ │ ├── FreeImage.pom │ │ │ │ ├── GFDL-1.1+.composer │ │ │ │ ├── GFDL-1.1+.npm │ │ │ │ ├── GFDL-1.1+.pom │ │ │ │ ├── GFDL-1.1-only.pom │ │ │ │ ├── GFDL-1.1-or-later.pom │ │ │ │ ├── GFDL-1.1.pom │ │ │ │ ├── GFDL-1.2+.composer │ │ │ │ ├── GFDL-1.2+.npm │ │ │ │ ├── GFDL-1.2+.pom │ │ │ │ ├── GFDL-1.2-only.pom │ │ │ │ ├── GFDL-1.2-or-later.pom │ │ │ │ ├── GFDL-1.2.pom │ │ │ │ ├── GFDL-1.3+.composer │ │ │ │ ├── GFDL-1.3+.npm │ │ │ │ ├── GFDL-1.3+.pom │ │ │ │ ├── GFDL-1.3-only.pom │ │ │ │ ├── GFDL-1.3-or-later.pom │ │ │ │ ├── GFDL-1.3.pom │ │ │ │ ├── GL2PS.pom │ │ │ │ ├── GPL-1.0+.composer │ │ │ │ ├── GPL-1.0+.npm │ │ │ │ ├── GPL-1.0+.pom │ │ │ │ ├── GPL-3.0+.composer │ │ │ │ ├── GPL-3.0+.npm │ │ │ │ ├── GPL-3.0+.pom │ │ │ │ ├── Giftware.pom │ │ │ │ ├── Glide.pom │ │ │ │ ├── Glulxe.pom │ │ │ │ ├── HPND.pom │ │ │ │ ├── HaskellReport.pom │ │ │ │ ├── IBM-pibs.pom │ │ │ │ ├── ICU.pom │ │ │ │ ├── IJG.pom │ │ │ │ ├── IPA.pom │ │ │ │ ├── IPL-1.0.pom │ │ │ │ ├── ImageMagick.pom │ │ │ │ ├── Info-ZIP.pom │ │ │ │ ├── Intel-ACPI.pom │ │ │ │ ├── Intel.pom │ │ │ │ ├── Interbase-1.0.pom │ │ │ │ ├── JSON.pom │ │ │ │ ├── JasPer-2.0.pom │ │ │ │ ├── LAL-1.2.pom │ │ │ │ ├── LAL-1.3.pom │ │ │ │ ├── LGPL-3.0+.composer │ │ │ │ ├── LGPL-3.0+.npm │ │ │ │ ├── LGPL-3.0+.pom │ │ │ │ ├── LGPLLR.pom │ │ │ │ ├── LPL-1.0.pom │ │ │ │ ├── LPL-1.02.pom │ │ │ │ ├── LPPL-1.0.pom │ │ │ │ ├── LPPL-1.1.pom │ │ │ │ ├── LPPL-1.2.pom │ │ │ │ ├── LPPL-1.3a.pom │ │ │ │ ├── LPPL-1.3c.pom │ │ │ │ ├── Latex2e.pom │ │ │ │ ├── Leptonica.pom │ │ │ │ ├── LiLiQ-P-1.1.pom │ │ │ │ ├── LiLiQ-R-1.1.pom │ │ │ │ ├── LiLiQ-Rplus-1.1.pom │ │ │ │ ├── Libpng.pom │ │ │ │ ├── Linux-OpenIB.pom │ │ │ │ ├── MIT-0.composer │ │ │ │ ├── MIT-0.npm │ │ │ │ ├── MIT-0.pom │ │ │ │ ├── MIT-CMU.composer │ │ │ │ ├── MIT-CMU.npm │ │ │ │ ├── MIT-CMU.pom │ │ │ │ ├── MIT-advertising.composer │ │ │ │ ├── MIT-advertising.npm │ │ │ │ ├── MIT-advertising.pom │ │ │ │ ├── MIT-enna.composer │ │ │ │ ├── MIT-enna.npm │ │ │ │ ├── MIT-enna.pom │ │ │ │ ├── MIT-feh.composer │ │ │ │ ├── MIT-feh.npm │ │ │ │ ├── MIT-feh.pom │ │ │ │ ├── MIT.pom │ │ │ │ ├── MITNFA.pom │ │ │ │ ├── MPL-1.0.pom │ │ │ │ ├── MPL-1.1.pom │ │ │ │ ├── MPL-2.0-no-copyleft-exception.pom │ │ │ │ ├── MPL-2.0.pom │ │ │ │ ├── MS-PL.pom │ │ │ │ ├── MS-RL.pom │ │ │ │ ├── MTLL.pom │ │ │ │ ├── MakeIndex.pom │ │ │ │ ├── MirOS.pom │ │ │ │ ├── Motosoto.pom │ │ │ │ ├── Multics.pom │ │ │ │ ├── Mup.pom │ │ │ │ ├── NASA-1.3.pom │ │ │ │ ├── NBPL-1.0.pom │ │ │ │ ├── NCSA.pom │ │ │ │ ├── NGPL.pom │ │ │ │ ├── NLOD-1.0.pom │ │ │ │ ├── NLPL.pom │ │ │ │ ├── NOSL.pom │ │ │ │ ├── NPL-1.0.pom │ │ │ │ ├── NPL-1.1.pom │ │ │ │ ├── NPOSL-3.0.pom │ │ │ │ ├── NRL.pom │ │ │ │ ├── NTP.pom │ │ │ │ ├── Naumen.pom │ │ │ │ ├── Net-SNMP.pom │ │ │ │ ├── NetCDF.pom │ │ │ │ ├── Newsletr.pom │ │ │ │ ├── Nokia.pom │ │ │ │ ├── Noweb.pom │ │ │ │ ├── Nunit.pom │ │ │ │ ├── OCCT-PL.pom │ │ │ │ ├── OCLC-2.0.pom │ │ │ │ ├── ODC-By-1.0.pom │ │ │ │ ├── ODbL-1.0.pom │ │ │ │ ├── OGL-UK-1.0.pom │ │ │ │ ├── OGL-UK-2.0.pom │ │ │ │ ├── OGL-UK-3.0.pom │ │ │ │ ├── OGTSL.pom │ │ │ │ ├── OLDAP-1.1.pom │ │ │ │ ├── OLDAP-1.2.pom │ │ │ │ ├── OLDAP-1.3.pom │ │ │ │ ├── OLDAP-1.4.pom │ │ │ │ ├── OLDAP-2.0.1.pom │ │ │ │ ├── OLDAP-2.0.pom │ │ │ │ ├── OLDAP-2.1.pom │ │ │ │ ├── OLDAP-2.2.1.pom │ │ │ │ ├── OLDAP-2.2.2.pom │ │ │ │ ├── OLDAP-2.2.pom │ │ │ │ ├── OLDAP-2.3.pom │ │ │ │ ├── OLDAP-2.4.pom │ │ │ │ ├── OLDAP-2.5.pom │ │ │ │ ├── OLDAP-2.6.pom │ │ │ │ ├── OLDAP-2.7.pom │ │ │ │ ├── OLDAP-2.8.pom │ │ │ │ ├── OML.pom │ │ │ │ ├── OPL-1.0.pom │ │ │ │ ├── OSET-PL-2.1.pom │ │ │ │ ├── OSL-1.0.pom │ │ │ │ ├── OSL-1.1.pom │ │ │ │ ├── OSL-2.0.pom │ │ │ │ ├── OSL-2.1.pom │ │ │ │ ├── OSL-3.0.pom │ │ │ │ ├── OpenSSL.pom │ │ │ │ ├── PDDL-1.0.pom │ │ │ │ ├── PHP-3.0.pom │ │ │ │ ├── PHP-3.01.pom │ │ │ │ ├── Plexus.pom │ │ │ │ ├── PostgreSQL.pom │ │ │ │ ├── Python-2.0.pom │ │ │ │ ├── QPL-1.0.pom │ │ │ │ ├── Qhull.pom │ │ │ │ ├── RHeCos-1.1.pom │ │ │ │ ├── RPL-1.1.pom │ │ │ │ ├── RPL-1.5.pom │ │ │ │ ├── RPSL-1.0.pom │ │ │ │ ├── RSA-MD.pom │ │ │ │ ├── RSCPL.pom │ │ │ │ ├── Rdisc.pom │ │ │ │ ├── Ruby.pom │ │ │ │ ├── SAX-PD.pom │ │ │ │ ├── SCEA.pom │ │ │ │ ├── SGI-B-1.0.pom │ │ │ │ ├── SGI-B-1.1.pom │ │ │ │ ├── SGI-B-2.0.pom │ │ │ │ ├── SISSL-1.2.pom │ │ │ │ ├── SISSL.pom │ │ │ │ ├── SMLNJ.pom │ │ │ │ ├── SMPPL.pom │ │ │ │ ├── SNIA.pom │ │ │ │ ├── SPL-1.0.pom │ │ │ │ ├── SWL.pom │ │ │ │ ├── Saxpath.pom │ │ │ │ ├── Sendmail-8.23.pom │ │ │ │ ├── Sendmail.pom │ │ │ │ ├── SimPL-2.0.pom │ │ │ │ ├── Sleepycat.pom │ │ │ │ ├── Spencer-86.pom │ │ │ │ ├── Spencer-94.pom │ │ │ │ ├── Spencer-99.pom │ │ │ │ ├── SugarCRM-1.1.3.pom │ │ │ │ ├── TCL.pom │ │ │ │ ├── TCP-wrappers.pom │ │ │ │ ├── TMate.pom │ │ │ │ ├── TORQUE-1.1.pom │ │ │ │ ├── TOSL.pom │ │ │ │ ├── TU-Berlin-1.0.pom │ │ │ │ ├── TU-Berlin-2.0.pom │ │ │ │ ├── UPL-1.0.pom │ │ │ │ ├── Unicode-DFS-2015.pom │ │ │ │ ├── Unicode-DFS-2016.pom │ │ │ │ ├── Unicode-TOU.pom │ │ │ │ ├── Unlicense.pom │ │ │ │ ├── VOSTROM.pom │ │ │ │ ├── VSL-1.0.pom │ │ │ │ ├── Vim.pom │ │ │ │ ├── W3C-19980720.pom │ │ │ │ ├── W3C-20150513.pom │ │ │ │ ├── W3C.pom │ │ │ │ ├── Watcom-1.0.pom │ │ │ │ ├── Wsuipa.pom │ │ │ │ ├── X11.pom │ │ │ │ ├── XFree86-1.1.pom │ │ │ │ ├── XSkat.pom │ │ │ │ ├── Xerox.pom │ │ │ │ ├── Xnet.pom │ │ │ │ ├── YPL-1.0.pom │ │ │ │ ├── YPL-1.1.pom │ │ │ │ ├── ZPL-1.1.pom │ │ │ │ ├── ZPL-2.0.pom │ │ │ │ ├── ZPL-2.1.pom │ │ │ │ ├── Zed.pom │ │ │ │ ├── Zend-2.0.pom │ │ │ │ ├── Zimbra-1.3.pom │ │ │ │ ├── Zimbra-1.4.pom │ │ │ │ ├── Zlib.pom │ │ │ │ ├── bzip2-1.0.5.pom │ │ │ │ ├── bzip2-1.0.6.pom │ │ │ │ ├── copyleft-next-0.3.0.pom │ │ │ │ ├── copyleft-next-0.3.1.pom │ │ │ │ ├── curl.pom │ │ │ │ ├── diffmark.pom │ │ │ │ ├── dvipdfm.pom │ │ │ │ ├── eGenix.pom │ │ │ │ ├── gSOAP-1.3b.pom │ │ │ │ ├── gnuplot.pom │ │ │ │ ├── iMatix.pom │ │ │ │ ├── libtiff.pom │ │ │ │ ├── mpich2.pom │ │ │ │ ├── psfrag.pom │ │ │ │ ├── psutils.pom │ │ │ │ ├── xinetd.pom │ │ │ │ ├── xpp.pom │ │ │ │ ├── zlib-acknowledgement.composer │ │ │ │ ├── zlib-acknowledgement.npm │ │ │ │ └── zlib-acknowledgement.pom │ │ │ ├── RunLicScan │ │ │ ├── empty │ │ │ └── noLic │ ├── mod_deps │ ├── nomos.conf │ ├── ui │ │ ├── agent-nomos-once.php │ │ ├── agent-nomos.php │ │ ├── ajax-filelic.php │ │ └── nomos-diff.php │ └── ui_tests │ │ ├── Functional │ │ ├── ckZendTest.php │ │ └── verifyRedHatTest.php │ │ └── testdata │ │ ├── vim-license │ │ ├── zend-license │ │ └── zlib-license ├── ojo │ ├── CMakeLists.txt │ ├── README.md │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── OjoAgent.cc │ │ ├── OjoAgent.hpp │ │ ├── OjoState.cc │ │ ├── OjoState.hpp │ │ ├── OjoUtils.cc │ │ ├── OjoUtils.hpp │ │ ├── OjosDatabaseHandler.cc │ │ ├── OjosDatabaseHandler.hpp │ │ ├── directoryScan.cc │ │ ├── directoryScan.hpp │ │ ├── ojomatch.hpp │ │ ├── ojoregex.cc │ │ ├── ojoregex.hpp │ │ ├── ojos.cc │ │ └── ojos.hpp │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── SchedulerTestRunnerScheduler.php │ │ │ ├── cli_test.sh │ │ │ ├── regexTest.json │ │ │ ├── regexTest.json.license │ │ │ ├── schedulerTest.php │ │ │ └── shunit2 │ │ └── Unit │ │ │ ├── run_tests.cc │ │ │ ├── test_regex.cc │ │ │ └── test_scanners.cc │ ├── mod_deps │ ├── ojo.conf │ └── ui │ │ └── agent-ojos.php ├── phpunit-bootstrap.php ├── phpunit.xml ├── pkgagent │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── pkgagent.c │ │ └── pkgagent.h │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ └── ft_cliPkgagentTest.php │ │ ├── Unit │ │ │ ├── testGetFieldValue.c │ │ │ ├── testGetMetadata.c │ │ │ ├── testGetMetadataDebBinary.c │ │ │ ├── testGetMetadataDebSource.c │ │ │ ├── testRecordMetadataDEB.c │ │ │ ├── testRecordMetadataRPM.c │ │ │ ├── testRun.c │ │ │ └── testTrim.c │ │ └── testdata │ │ │ ├── control │ │ │ ├── fossology-1.2.0-1.el5.i386.rpm │ │ │ └── fossology_1.4.1.dsc │ ├── mod_deps │ ├── pkgagent.conf │ └── ui │ │ └── agent-pkgagent.php ├── readmeoss │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── readmeoss.php │ │ └── version.php.in │ ├── readmeoss.conf │ └── ui │ │ ├── ReadMeOssAgentPlugin.php │ │ └── ReadMeOssPlugin.php ├── regexscan │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── regexscan-Stage1.c │ │ ├── regexscan-Stage2.c │ │ ├── regexscan-Stage3.c │ │ └── regexscan.c │ └── regexscan.conf ├── reportImport │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── ImportSource.php │ │ ├── ReportImportAgent.php │ │ ├── ReportImportConfiguration.php │ │ ├── ReportImportData.php │ │ ├── ReportImportDataItem.php │ │ ├── ReportImportHelper.php │ │ ├── ReportImportSink.php │ │ ├── SpdxTwoImportSource.php │ │ ├── XmlImportSource.php │ │ ├── reportImport.php │ │ ├── services.php │ │ └── version.php.in │ ├── reportImport.conf │ └── ui │ │ ├── ReportImportAgentPlugin.php │ │ ├── ReportImportPlugin.php │ │ ├── services.php │ │ └── template │ │ └── ReportImportPlugin.html.twig ├── reso │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── ResoAgent.php │ │ ├── reso.php │ │ └── version.php.in │ ├── reso.conf │ └── ui │ │ └── ResoAgentPlugin.php ├── reuser │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── ReuserAgent.php │ │ ├── reuser.php │ │ └── version.php.in │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ └── Functional │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── SchedulerTestRunnerMock.php │ │ │ └── schedulerTest.php │ ├── reuser.conf │ └── ui │ │ ├── agent-reuser.php │ │ ├── reuser-plugin.php │ │ ├── services.php │ │ └── template │ │ ├── agent_reuser.html.twig │ │ ├── agent_reuser.js.twig │ │ └── reuse-folder.html.twig ├── scancode │ ├── CMakeLists.txt │ ├── README.md │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── match.cc │ │ ├── match.hpp │ │ ├── runscanonfiles.py │ │ ├── scancode.cc │ │ ├── scancode.hpp │ │ ├── scancode_dbhandler.cc │ │ ├── scancode_dbhandler.hpp │ │ ├── scancode_state.cc │ │ ├── scancode_state.hpp │ │ ├── scancode_utils.cc │ │ ├── scancode_utils.hpp │ │ ├── scancode_wrapper.cc │ │ └── scancode_wrapper.hpp │ ├── mod_deps │ ├── scancode.conf │ └── ui │ │ ├── agent-scancode.php │ │ ├── services.php │ │ └── template │ │ └── scancode.html.twig ├── scanoss │ ├── CMakeLists.txt │ ├── README.MD │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── snippet_scan.c │ │ └── snippet_scan.h │ ├── mod_deps │ ├── pics │ │ ├── screenshot1.png │ │ ├── screenshot1.png.license │ │ ├── screenshot2.png │ │ ├── screenshot2.png.license │ │ ├── screenshot3.png │ │ └── screenshot3.png.license │ ├── scanoss.conf │ └── ui │ │ ├── agent-scanoss.php │ │ └── template │ │ └── scanoss.html.twig ├── scheduler │ ├── CMakeLists.txt │ ├── TestInstall.make │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── agent.c │ │ ├── agent.h │ │ ├── database.c │ │ ├── database.h │ │ ├── defconf │ │ │ ├── default │ │ │ │ └── fossology │ │ │ └── init.d │ │ │ │ └── fossology.in │ │ ├── emailformatter.c │ │ ├── emailformatter.h │ │ ├── event.c │ │ ├── event.h │ │ ├── fo_cli.c │ │ ├── fo_scheduler.c │ │ ├── host.c │ │ ├── host.h │ │ ├── interface.c │ │ ├── interface.h │ │ ├── job.c │ │ ├── job.h │ │ ├── logging.c │ │ ├── logging.h │ │ ├── scheduler.c │ │ ├── scheduler.h │ │ └── sqlstatements.h │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── Functional.py │ │ │ └── Functional.xml │ │ ├── Unit │ │ │ ├── testAgent.c │ │ │ ├── testDatabase.c │ │ │ ├── testEvent.c │ │ │ ├── testHost.c │ │ │ ├── testInterface.c │ │ │ ├── testJob.c │ │ │ ├── testRun.c │ │ │ ├── testRun.h │ │ │ ├── testScheduler.c │ │ │ ├── utils.c │ │ │ └── utils.h │ │ └── agents │ │ │ ├── before_connect.c │ │ │ ├── db_connect.c │ │ │ ├── fossology.conf.in │ │ │ ├── multi_connect.c │ │ │ ├── no_check.c │ │ │ ├── no_disconnect.c │ │ │ ├── no_update.c │ │ │ ├── quick_death.c │ │ │ ├── simple.c │ │ │ └── wait_special.c │ ├── mod_deps │ └── ui_tests │ │ └── scheduler_status.php ├── softwareHeritage │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── softwareHeritage.php │ │ ├── softwareHeritageAgent.php │ │ └── version.php.in │ ├── softwareHeritage.conf │ └── ui │ │ ├── AjaxSHDetailsBrowser.php │ │ ├── agent-shagent.php │ │ ├── services.php │ │ ├── softwareHeritage-plugin.php │ │ └── template │ │ ├── softwareHeritage.html.twig │ │ └── softwareHeritage.js.twig ├── spasht │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── SpashtAgent.php │ │ ├── spasht.php │ │ └── version.php.in │ ├── spasht.conf │ └── ui │ │ ├── agent-spasht.php │ │ ├── ajax-spasht-copyright-hist.php │ │ ├── services.php │ │ ├── template │ │ ├── agent_spasht.html.twig │ │ ├── agent_spasht.js.twig │ │ ├── agent_spasht_search.html.twig │ │ ├── agent_spasht_ui_content.html.twig │ │ ├── agent_spasht_ui_tabs.html.twig │ │ ├── show_definitions.html.twig │ │ ├── show_details_table.html.twig │ │ ├── show_uploads_table.html.twig │ │ └── spasht_histTable.js.twig │ │ └── ui-spasht.php ├── spdx2 │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── agent.sh │ │ ├── services.php │ │ ├── spdx2.php │ │ ├── spdx2utils.php │ │ ├── template │ │ │ ├── dep5-copyright-document.twig │ │ │ ├── dep5-copyright-file.twig │ │ │ ├── dep5-copyright-package.twig │ │ │ ├── listedlicense.xml.twig │ │ │ ├── spdx2-document.xml.twig │ │ │ ├── spdx2-file.xml.twig │ │ │ ├── spdx2-package.xml.twig │ │ │ ├── spdx2csv-document.twig │ │ │ ├── spdx2csv-file.twig │ │ │ ├── spdx2csv-package.twig │ │ │ ├── spdx2tv-document.twig │ │ │ ├── spdx2tv-file.twig │ │ │ └── spdx2tv-package.twig │ │ └── version.php.in │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── fo_report.sql │ │ │ └── schedulerTest.php │ │ └── Unit │ │ │ └── spdx2utilTest.php │ ├── dep5.conf │ ├── spdx2.conf │ ├── spdx2csv.conf │ ├── spdx2tv.conf │ └── ui │ │ ├── DepFiveAgentPlugin.php │ │ ├── SpdxTwoAgentPlugin.php │ │ ├── SpdxTwoCommaSeparatedValuesAgentPlugin.php │ │ ├── SpdxTwoGeneratorUi.php │ │ └── SpdxTwoTagValueAgentPlugin.php ├── srcdocs │ ├── fodox.conf │ └── makedox ├── testing │ ├── README │ ├── checkTestData.php │ ├── dataFiles │ │ ├── TestData │ │ │ ├── archives │ │ │ │ ├── 3files.tar.bz2 │ │ │ │ ├── eddyData.tar.bz2 │ │ │ │ ├── foss23D1F1L.tar.bz2 │ │ │ │ ├── fossDirsOnly.tar.bz2 │ │ │ │ ├── fossI16L335U29.tar.bz2 │ │ │ │ ├── fossI16L518.7z │ │ │ │ └── verifyFossI16L335U29.tar.bz2 │ │ │ ├── fosstester │ │ │ │ ├── .bash_aliases │ │ │ │ ├── .bashrc │ │ │ │ └── ReadMe │ │ │ └── licenses │ │ │ │ ├── Affero-v1.0 │ │ │ │ ├── Apache-v1.1 │ │ │ │ ├── ApacheLicense-v2.0 │ │ │ │ ├── ApacheV2.0.gz │ │ │ │ ├── BSD_style_a.txt │ │ │ │ ├── BSD_style_b.txt │ │ │ │ ├── BSD_style_c.txt │ │ │ │ ├── BSD_style_d.txt │ │ │ │ ├── BSD_style_e.txt │ │ │ │ ├── BSD_style_f.txt │ │ │ │ ├── BSD_style_g.txt │ │ │ │ ├── BSD_style_h.txt │ │ │ │ ├── BSD_style_i.txt │ │ │ │ ├── BSD_style_j.txt │ │ │ │ ├── BSD_style_k.txt │ │ │ │ ├── BSD_style_l.txt │ │ │ │ ├── BSD_style_m.txt │ │ │ │ ├── BSD_style_n.txt │ │ │ │ ├── BSD_style_o.txt │ │ │ │ ├── BSD_style_p.txt │ │ │ │ ├── BSD_style_q.txt │ │ │ │ ├── BSD_style_s.txt │ │ │ │ ├── BSD_style_t.txt │ │ │ │ ├── BSD_style_u.txt │ │ │ │ ├── BSD_style_v.txt │ │ │ │ ├── BSD_style_w.txt │ │ │ │ ├── BSD_style_x.txt │ │ │ │ ├── BSD_style_y.txt │ │ │ │ ├── BSD_style_z.txt │ │ │ │ ├── DNSDigest.c │ │ │ │ ├── FILEgpl3.0 │ │ │ │ ├── FILEgplv2.1 │ │ │ │ ├── OSIzlibLicense-2006-10-31 │ │ │ │ ├── Oracle-Berkeley-DB.java │ │ │ │ ├── RCSL_v3.0_a.txt │ │ │ │ ├── RPSL_v1.0_a.txt │ │ │ │ ├── RPSL_v1.0_b.txt │ │ │ │ ├── agpl-3.0.txt │ │ │ │ ├── apple.lic │ │ │ │ ├── gpl-3.0.txt │ │ │ │ ├── gplv2.1 │ │ │ │ ├── jslint.js │ │ │ │ ├── sleepycat.php │ │ │ │ └── zlibLicense-1.2.2-2004-Oct-03 │ │ ├── funcTests.ini │ │ ├── licenseText.php │ │ ├── mailTo.php │ │ ├── miginstall │ │ │ ├── debian.ini │ │ │ ├── fedora.ini │ │ │ ├── redhat.ini │ │ │ └── ubuntu.ini │ │ ├── pkginstall │ │ │ ├── debian.ini │ │ │ ├── debian │ │ │ │ └── 6 │ │ │ │ │ ├── apache2-php.ini │ │ │ │ │ ├── cli-php.ini │ │ │ │ │ └── postgresql.conf │ │ │ ├── fedora.ini │ │ │ ├── fo-apache.conf │ │ │ ├── redfed-fossology.repo │ │ │ ├── redhat.ini │ │ │ ├── redhat │ │ │ │ └── 6.x │ │ │ │ │ ├── pg_hba.conf │ │ │ │ │ ├── php.ini │ │ │ │ │ ├── postgresql.conf │ │ │ │ │ └── rhel-fossology.repo │ │ │ └── ubuntu.ini │ │ └── unitTests.ini │ ├── db │ │ ├── TestDbFactory.php │ │ ├── c │ │ │ ├── CMakeLists.txt │ │ │ ├── libfodbreposysconf.c │ │ │ └── libfodbreposysconf.h │ │ ├── cleanup_test_databases.php │ │ ├── createEmptyTestEnvironment.php │ │ ├── createTestDB.php │ │ ├── createTestEnvironment.php │ │ ├── create_test_database.php │ │ ├── fosstestinit.sql │ │ ├── ftdbcreate.sh │ │ └── purgeTestEnvironment.php │ ├── docker │ │ ├── test-cluster.sh │ │ └── test-standalone.sh │ ├── fo_integration.php │ ├── fointeg.php │ ├── functional │ │ ├── FossologyFunctionalTests.php │ │ ├── genFuncTestsResult │ │ ├── runAgentFunc.php │ │ ├── runFunctionalTests.php │ │ ├── runTestCleanup.php │ │ ├── runUploadsTest.php │ │ ├── runVerifyUploadsTests.php │ │ └── testFOSSology.php │ ├── install │ │ ├── migrateConfig.php │ │ ├── pkgConfig.php │ │ ├── srcConfig.php │ │ ├── test4migrationinstall │ │ │ ├── test_common.php │ │ │ ├── test_cp2foss.php │ │ │ └── testdata.php │ │ ├── test4packageinstall │ │ │ ├── test_common.php │ │ │ ├── test_cp2foss.php │ │ │ └── testdata.php │ │ ├── vm.ini │ │ ├── vmcheck.php │ │ ├── vmrevert.php │ │ └── whatos │ ├── jenkins │ │ ├── Fossology_Build.xml │ │ ├── Fossology_Functional_Tests.xml │ │ ├── Fossology_Installation.xml │ │ ├── Fossology_Migration.xml │ │ ├── Fossology_Package_Build.xml │ │ ├── Fossology_Package_Install.xml │ │ ├── Fossology_Package_Install_Prep.xml │ │ ├── Fossology_Performance.xml │ │ ├── Fossology_Performance_Prep.xml │ │ ├── Fossology_Source_Install.xml │ │ ├── Fossology_Unit_Test_Prep.xml │ │ ├── Fossology_Unit_Tests.xml │ │ ├── Fossology_Unit_Tests_Cleanup.xml │ │ └── Generate_Code_Documentation.xml │ ├── lib │ │ ├── TestRun.php │ │ ├── bootstrap.php │ │ ├── c │ │ │ ├── CMakeLists.txt │ │ │ ├── libfocunit.c │ │ │ └── libfocunit.h │ │ ├── common-Test.php │ │ ├── common-Ui.php │ │ ├── common-vm.php │ │ ├── createRC.php │ │ ├── fossologyTest.php │ │ ├── fossologyTestCase.php │ │ ├── libTestDB.php │ │ ├── reportClass.php │ │ └── testClasses │ │ │ ├── ReadInputFile.php │ │ │ ├── check4jobs.php │ │ │ ├── db.php │ │ │ ├── dom-parseLicenseTable.php │ │ │ ├── parseBrowseMenu.php │ │ │ ├── parseFolderPath.php │ │ │ ├── parseLicGrpFileLinks.php │ │ │ ├── parseLicenseTbl.php │ │ │ ├── parseLicenseTblDirs.php │ │ │ ├── parseMiniMenu.php │ │ │ ├── parsePgLinks.php │ │ │ └── timer.php │ ├── performance │ │ ├── chartresult.html │ │ ├── drawline │ │ ├── getresult │ │ └── stress │ ├── regression │ │ └── regressiontest.php │ ├── reports │ │ ├── textReport.php │ │ └── xml2html.php │ ├── syntax │ │ └── syntaxtest.sh │ ├── templates │ │ ├── PHPUnit │ │ │ └── templatePHPUnit.php │ │ └── simpletest │ │ │ ├── SampleTestRunner.php │ │ │ ├── myrun.php │ │ │ ├── mytest.php │ │ │ ├── runtemplate.php │ │ │ └── templateTest.php │ ├── tutorials │ │ └── FOSSologyTest │ │ │ └── FOSSologyTest.pkg │ ├── unit │ │ ├── genUnitTestsResult │ │ ├── runAgentUnit.php │ │ └── runPkgUnitTests │ └── utils │ │ ├── BuildandInstall.php │ │ ├── CreateTestUser.sh │ │ ├── Install.php │ │ ├── Nightly.php │ │ ├── RemoveTestUser.sh │ │ ├── checkConfig.php │ │ ├── checkOutSrcs.php │ │ ├── cleanRF.php │ │ ├── configTestEnv.php │ │ ├── createDbUser.sql │ │ ├── createRC.php │ │ ├── createTestFiles.php │ │ ├── createUIUsers.php │ │ ├── dbcreate │ │ ├── fo-runTests.php │ │ ├── installTestData.sh │ │ ├── junit_xml_reporter.php │ │ ├── libCopyRight.php │ │ ├── lnfo-runTests.php │ │ ├── makeDbUser │ │ ├── nightly.sh │ │ ├── printLicTbl.php │ │ ├── printUrlTbl.php │ │ ├── simpleUi-users.php │ │ ├── testCleanUp.php │ │ ├── testCleanup.sh │ │ ├── testDBinit.sql │ │ ├── upl1File.php │ │ ├── uplTestData.php │ │ ├── upload1File.php │ │ ├── uploadTestData.php │ │ ├── uploadUnpack.php │ │ └── wait4jobs.php ├── unifiedreport │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── reportStatic.php │ │ ├── reportSummary.php │ │ ├── unifiedreport.php │ │ └── version.php.in │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ └── Functional │ │ │ ├── ReportTestfiles.tar │ │ │ ├── ReportTestfiles.tar.license │ │ │ ├── SchedulerTestRunner.php │ │ │ ├── SchedulerTestRunnerCli.php │ │ │ ├── fo_report.sql │ │ │ └── schedulerTest.php │ ├── ui │ │ ├── agent-foreport.php │ │ └── agent-report.php │ └── unifiedreport.conf ├── ununpack │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── checksum.c │ │ ├── checksum.h │ │ ├── departition.c │ │ ├── externs.h │ │ ├── standalone.c │ │ ├── standalone.h │ │ ├── traverse.c │ │ ├── ununpack-ar.c │ │ ├── ununpack-ar.h │ │ ├── ununpack-disk.c │ │ ├── ununpack-disk.h │ │ ├── ununpack-iso.c │ │ ├── ununpack-iso.h │ │ ├── ununpack-zstd.c │ │ ├── ununpack-zstd.h │ │ ├── ununpack.c │ │ ├── ununpack.h │ │ ├── ununpack_globals.h │ │ └── utils.c │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ ├── cliParamsTest4UnunpackException.php │ │ │ ├── cliParamsTest4UnunpackNormal.php │ │ │ ├── tests.xml │ │ │ └── utility.php │ │ ├── Unit │ │ │ ├── run_tests.c │ │ │ ├── run_tests.h │ │ │ ├── test_Checksum.c │ │ │ ├── test_ContainerInfo.c │ │ │ ├── test_CopyFile.c │ │ │ ├── test_DBInsert.c │ │ │ ├── test_FindCmd.c │ │ │ ├── test_IsFunctions.c │ │ │ ├── test_PathCheck.c │ │ │ ├── test_Prune.c │ │ │ ├── test_RunCommand.c │ │ │ ├── test_TaintString.c │ │ │ ├── test_Traverse.c │ │ │ ├── test_TraverseChild.c │ │ │ ├── test_TraverseStart.c │ │ │ ├── test_ununpack-ar.c │ │ │ ├── test_ununpack-disk.c │ │ │ ├── test_ununpack-iso.c │ │ │ └── test_ununpack-zstd.c │ │ └── testdata │ │ │ ├── dropDb.sh │ │ │ ├── setupDb.sh │ │ │ ├── testdata.tar.bz2 │ │ │ └── testit.sh │ ├── mod_deps │ ├── ui │ │ ├── agent-unpack.php │ │ └── ui-reunpack.php │ └── ununpack.conf ├── wget_agent │ ├── CMakeLists.txt │ ├── agent │ │ ├── CMakeLists.txt │ │ ├── main.c │ │ ├── wget_agent.c │ │ └── wget_agent.h │ ├── agent_tests │ │ ├── CMakeLists.txt │ │ ├── Functional │ │ │ └── cliParamsTest4WgetAgent.php │ │ └── Unit │ │ │ ├── testRun.c │ │ │ ├── testRun.h │ │ │ ├── utility.c │ │ │ ├── utility.h │ │ │ └── wget_agent │ │ │ ├── testDBLoadGold.c │ │ │ ├── testGetURL.c │ │ │ ├── testSetEnv.c │ │ │ └── testUtilities.c │ ├── mod_deps │ ├── ui │ │ └── wget_agent.php │ └── wget_agent.conf └── www │ ├── CMakeLists.txt │ ├── locale │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── messages.mo │ │ │ ├── messages.mo.license │ │ │ └── messages.po │ └── nl_NL │ │ └── LC_MESSAGES │ │ └── messages.po │ ├── ui │ ├── README.txt │ ├── acme_review.php │ ├── admin-config.php │ ├── admin-dashboard-general.php │ ├── admin-dashboard-stats.php │ ├── admin-folder-create.php │ ├── admin-folder-edit.php │ ├── admin-folder-size.php │ ├── admin-fossdash-config.php │ ├── admin-license-file.php │ ├── admin-obligation-file.php │ ├── admin-scheduler.php │ ├── admin-tag-manage.php │ ├── admin-tag.php │ ├── admin-upload-edit.php │ ├── agent-add.php │ ├── ajax-clearing-view.php │ ├── ajax-manage-tag.php │ ├── ajax-notice-files.php │ ├── ajax-schedule-agent.php │ ├── ajax-tags.php │ ├── ajax-upload-agents.php │ ├── ajax-uploads.php │ ├── api │ │ ├── Controllers │ │ │ ├── AuthController.php │ │ │ ├── BadRequestController.php │ │ │ ├── ConfController.php │ │ │ ├── CopyrightController.php │ │ │ ├── CustomiseController.php │ │ │ ├── FileInfoController.php │ │ │ ├── FileSearchController.php │ │ │ ├── FolderController.php │ │ │ ├── GroupController.php │ │ │ ├── InfoController.php │ │ │ ├── JobController.php │ │ │ ├── LicenseController.php │ │ │ ├── MaintenanceController.php │ │ │ ├── ObligationController.php │ │ │ ├── OneShotController.php │ │ │ ├── OverviewController.php │ │ │ ├── ReportController.php │ │ │ ├── RestController.php │ │ │ ├── SearchController.php │ │ │ ├── UploadController.php │ │ │ ├── UploadTreeController.php │ │ │ └── UserController.php │ │ ├── Exceptions │ │ │ ├── HttpBadRequestException.php │ │ │ ├── HttpConflictException.php │ │ │ ├── HttpErrorException.php │ │ │ ├── HttpForbiddenException.php │ │ │ ├── HttpInternalServerErrorException.php │ │ │ ├── HttpNotFoundException.php │ │ │ ├── HttpPreconditionFailException.php │ │ │ ├── HttpServiceUnavailableException.php │ │ │ └── HttpTooManyRequestException.php │ │ ├── Helper │ │ │ ├── AuthHelper.php │ │ │ ├── CorsHelper.php │ │ │ ├── DbHelper.php │ │ │ ├── FileHelper.php │ │ │ ├── ResponseFactoryHelper.php │ │ │ ├── ResponseHelper.php │ │ │ ├── RestHelper.php │ │ │ ├── UploadHelper.php │ │ │ ├── UploadHelper │ │ │ │ ├── HelperToUploadFilePage.php │ │ │ │ ├── HelperToUploadSrvPage.php │ │ │ │ ├── HelperToUploadUrlPage.php │ │ │ │ └── HelperToUploadVcsPage.php │ │ │ └── UserHelper.php │ │ ├── Middlewares │ │ │ ├── FossologyInitMiddleware.php │ │ │ └── RestAuthMiddleware.php │ │ ├── Models │ │ │ ├── AdminAcknowledgement.php │ │ │ ├── Agent.php │ │ │ ├── Analysis.php │ │ │ ├── ApiVersion.php │ │ │ ├── BulkHistory.php │ │ │ ├── ClearingHistory.php │ │ │ ├── Conf.php │ │ │ ├── Decider.php │ │ │ ├── EditedLicense.php │ │ │ ├── File.php │ │ │ ├── FileInfo.php │ │ │ ├── FileLicenses.php │ │ │ ├── Findings.php │ │ │ ├── Folder.php │ │ │ ├── Group.php │ │ │ ├── GroupPermission.php │ │ │ ├── Hash.php │ │ │ ├── Info.php │ │ │ ├── InfoType.php │ │ │ ├── Job.php │ │ │ ├── JobQueue.php │ │ │ ├── License.php │ │ │ ├── LicenseCandidate.php │ │ │ ├── LicenseDecision.php │ │ │ ├── LicenseStandardComment.php │ │ │ ├── Obligation.php │ │ │ ├── OneShot.php │ │ │ ├── Permissions.php │ │ │ ├── Reuser.php │ │ │ ├── ScanOptions.php │ │ │ ├── Scancode.php │ │ │ ├── ScannedLicense.php │ │ │ ├── SearchResult.php │ │ │ ├── ShowJob.php │ │ │ ├── SuccessfulAgent.php │ │ │ ├── TokenRequest.php │ │ │ ├── Upload.php │ │ │ ├── UploadSummary.php │ │ │ ├── User.php │ │ │ └── UserGroupMember.php │ │ ├── documentation │ │ │ ├── openapi.yaml │ │ │ ├── openapiv2.yaml │ │ │ ├── pretty-swag.json │ │ │ └── pretty-swag.json.license │ │ └── index.php │ ├── async │ │ ├── AjaxAdminScheduler.php │ │ ├── AjaxAllJobStatus.php │ │ ├── AjaxBrowse.php │ │ ├── AjaxBulkHistory.php │ │ ├── AjaxExplorer.php │ │ ├── AjaxFileBrowser.php │ │ ├── AjaxFolderContents.php │ │ ├── AjaxJobInfo.php │ │ ├── AjaxJobStatus.php │ │ ├── AjaxLicenseAcknowledgements.php │ │ ├── AjaxLicenseStdComments.php │ │ ├── AjaxManageToken.php │ │ ├── AjaxReuseReport.php │ │ ├── AjaxShowJobs.php │ │ └── ScheduleAgent.php │ ├── change-license-bulk.php │ ├── change-license-processPost.php │ ├── core-auth.php │ ├── core-init.php │ ├── core-schema.dat │ ├── core-smauth.php │ ├── css │ │ ├── access-token.css │ │ ├── bootstrap-icons.css │ │ ├── bootstrap4-toggle.min.css │ │ ├── csshover.htc │ │ ├── fossology.css │ │ ├── highlights.css │ │ ├── images │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery.dataTables.css │ │ ├── jquery.treeview.css │ │ ├── select2.custom.css │ │ ├── select2.min.css │ │ ├── showjobs.css │ │ └── spasht.css │ ├── favicon.ico │ ├── favicon.ico.license │ ├── group-add.php │ ├── i18n.php │ ├── images │ │ ├── button_edit.png │ │ ├── dataTable │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ ├── eyes.png │ │ ├── fossology-flow4.png │ │ ├── fossology-logo.gif │ │ ├── green.png │ │ ├── grey.png │ │ ├── icons │ │ │ ├── README │ │ │ ├── add_16.png │ │ │ ├── add_32.png │ │ │ ├── added_16.png │ │ │ ├── arrow_down_32.png │ │ │ ├── arrow_up_32.png │ │ │ ├── arrow_updown_32.png │ │ │ ├── blue_arrow_down_32.png │ │ │ ├── blue_arrow_up_32.png │ │ │ ├── close_16.png │ │ │ ├── close_32.png │ │ │ ├── closed_16.png │ │ │ ├── remove_16.png │ │ │ ├── remove_32.png │ │ │ ├── star_16.png │ │ │ ├── star_32.png │ │ │ ├── star_filled_16.png │ │ │ └── star_filled_32.png │ │ ├── info_16.png │ │ ├── logo2.png │ │ ├── pig.gif │ │ ├── red.png │ │ ├── redGreen.png │ │ ├── right-point-bullet.gif │ │ ├── space_16.png │ │ ├── treeview-default-line.gif │ │ ├── treeview-default.gif │ │ ├── white.png │ │ └── yellow.png │ ├── index.php │ ├── page │ │ ├── AboutPage.php │ │ ├── AdminAllLicenseToCSV.php │ │ ├── AdminAllLicenseToJSON.php │ │ ├── AdminContentDelete.php │ │ ├── AdminContentMove.php │ │ ├── AdminGroupDelete.php │ │ ├── AdminGroupUsers.php │ │ ├── AdminLicenseAcknowledgements.php │ │ ├── AdminLicenseCandidate.php │ │ ├── AdminLicenseCompatibilityRules.php │ │ ├── AdminLicenseFromCSV.php │ │ ├── AdminLicenseFromYAML.php │ │ ├── AdminLicenseStdComments.php │ │ ├── AdminLicenseToCSV.php │ │ ├── AdminLicenseToJSON.php │ │ ├── AdminLicenseToYAML.php │ │ ├── AdminObligationFromCSV.php │ │ ├── AdminObligationToCSV.php │ │ ├── AdminObligationToJSON.php │ │ ├── AdviceLicense.php │ │ ├── AllJobStatus.php │ │ ├── BrowseLicense.php │ │ ├── GettingStartedPage.php │ │ ├── HomePage.php │ │ ├── ThirdPartyLicensesPage.php │ │ ├── UploadFilePage.php │ │ ├── UploadPageBase.php │ │ ├── UploadPermissionPage.php │ │ ├── UploadSrvPage.php │ │ ├── UploadUrlPage.php │ │ └── UploadVcsPage.php │ ├── popup-license.php │ ├── scripts │ │ ├── admin-license-acknowledgements.js │ │ ├── admin-license-std-comments.js │ │ ├── bootstrap4-toggle.min.js │ │ ├── browse.js │ │ ├── change-license-browse.js │ │ ├── change-license-common.js │ │ ├── change-license-view.js │ │ ├── copyrightHist.js │ │ ├── job-queue-poll.js │ │ ├── jquery-3.6.0.min.js │ │ ├── jquery-ui.js │ │ ├── jquery.cookie.js │ │ ├── jquery.dataTables.editable.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.dataTables.select.js │ │ ├── jquery.jeditable.js │ │ ├── jquery.treeview.js │ │ ├── jquery.validate.js │ │ ├── legend.js │ │ ├── license.js │ │ ├── popper.min.js │ │ ├── select2.full.min.js │ │ ├── supervised.js │ │ ├── togglePasswords.js │ │ ├── tools.js │ │ ├── ui-clearing-view_bulk.js │ │ └── user-edit.js │ ├── search.php │ ├── showjobs.php │ ├── template │ │ ├── about.html.twig │ │ ├── admin-folder-create-form.html.twig │ │ ├── admin-folder-edit-form.html.twig │ │ ├── admin-folder-size-form.html.twig │ │ ├── admin_content_delete.html.twig │ │ ├── admin_content_move.html.twig │ │ ├── admin_content_move.js.twig │ │ ├── admin_group_delete.html.twig │ │ ├── admin_group_users.html.twig │ │ ├── admin_license-upload_form.html.twig │ │ ├── admin_license_acknowledgements.html.twig │ │ ├── admin_license_candidate-merge.html.twig │ │ ├── admin_license_candidate.html.twig │ │ ├── admin_license_compatibility_rules.html.twig │ │ ├── admin_license_compatibility_rules.js.twig │ │ ├── admin_license_file.html.twig │ │ ├── admin_license_file.js.twig │ │ ├── admin_license_from_csv.html.twig │ │ ├── admin_license_from_yaml.html.twig │ │ ├── admin_license_std_comments.html.twig │ │ ├── admin_obligation-upload_form.html.twig │ │ ├── admin_upload_edit.html.twig │ │ ├── advice_license-edit.html.twig │ │ ├── advice_license.html.twig │ │ ├── agent_adder.html.twig │ │ ├── ajax-admin-scheduler.html.twig │ │ ├── all_job_status.html.twig │ │ ├── browse.html.twig │ │ ├── browse_file.js.twig │ │ ├── browse_license-agent.html.twig │ │ ├── browse_license-agent_selector.html.twig │ │ ├── browse_license-lic_hist.js.twig │ │ ├── browse_license-summary.html.twig │ │ ├── browse_license.html.twig │ │ ├── bulk-history.html.twig │ │ ├── bulk-history.js.twig │ │ ├── change_license_modal.html.twig │ │ ├── file-browse.html.twig │ │ ├── file-browse.js.twig │ │ ├── getting_started.html.twig │ │ ├── getting_started_licensebrowser.html.twig │ │ ├── home.html.twig │ │ ├── licensebrowser.html.twig │ │ ├── login.html.twig │ │ ├── menu-entry.html.twig │ │ ├── next-options.js.twig │ │ ├── oneshot-upload.html.twig │ │ ├── password-policy-check.js.twig │ │ ├── popup_license.html.twig │ │ ├── report.html.twig │ │ ├── reuser.html.twig │ │ ├── riskLevel_select.js.twig │ │ ├── thirdPartyLicenses.html.twig │ │ ├── ui-browse-license_file-list.js.twig │ │ ├── ui-browse.html.twig │ │ ├── ui-browse.js.twig │ │ ├── ui-clearing-view.html.twig │ │ ├── ui-clearing-view.js.twig │ │ ├── ui-clearing-view_bulk.html.twig │ │ ├── ui-clearing-view_rhs.html.twig │ │ ├── ui-export-list.html.twig │ │ ├── ui-job-show.html.twig │ │ ├── ui-job-show.js.twig │ │ ├── ui-report-conf.html.twig │ │ ├── ui-search.html.twig │ │ ├── ui-showjobs.html.twig │ │ ├── ui-showjobs.js.twig │ │ ├── ui-view-info.html.twig │ │ ├── upload_file.html.twig │ │ ├── upload_instructions.html.twig │ │ ├── upload_permissions.html.twig │ │ ├── upload_srv.html.twig │ │ ├── upload_srv.js.twig │ │ ├── upload_url.html.twig │ │ ├── upload_vcs.html.twig │ │ ├── user_add.html.twig │ │ ├── user_edit.html.twig │ │ └── welcome.html.twig │ ├── ui-browse.php │ ├── ui-clearing-view.php │ ├── ui-download.php │ ├── ui-export-list.php │ ├── ui-file-browse.php │ ├── ui-license-list-files.php │ ├── ui-picker.php │ ├── ui-refresh.php │ ├── ui-report-conf.php │ ├── ui-tags.php │ ├── ui-topnav.php │ ├── ui-treenav.php │ ├── ui-view-info.php │ ├── ui-view.php │ ├── upload-instructions.php │ ├── user-add.php │ ├── user-del-helper.php │ ├── user-del.php │ ├── user-edit.php │ └── xhtml1-frameset.dtd │ └── ui_tests │ ├── BasicTests │ ├── BasicSetup.php │ ├── CreateFolderTest.php │ ├── DeleteFolderTest.php │ ├── DupFolderTest.php │ ├── DupUploadTest.php │ ├── TestData │ │ ├── apple.lic │ │ └── gplv2.1 │ ├── UploadFileTest.php │ ├── UploadSrvArchiveTest.php │ ├── UploadUrlTest.php │ ├── createFldrDeleteIt.php │ ├── editFolderDescriptionOnlyTest.php │ ├── editFolderNameOnlyTest.php │ ├── editFolderTest.php │ ├── moveFolderTest.php │ ├── moveUploadTest.php │ ├── runBasicTests.php │ ├── uploadSrvDirTest.php │ └── uploadSrvFileTest.php │ ├── EmailNotification │ ├── changeENV.php │ ├── uploadWEmail.php │ └── uploadWoutEmail.php │ ├── SiteTests │ ├── AboutMenuTest.php │ ├── OrgFoldersMenuTest-Create.php │ ├── OrgFoldersMenuTest-Delete.php │ ├── OrgFoldersMenuTest-Edit.php │ ├── OrgFoldersMenuTest-Move.php │ ├── OrgUploadsMenuTest-Delete.php │ ├── OrgUploadsMenuTest-Move.php │ ├── SearchMenuTest.php │ ├── UploadFileMenuTest.php │ ├── UploadInstructMenuTest.php │ ├── UploadOne-ShotMenuTest.php │ ├── UploadServerMenuTest.php │ ├── UploadUrlMenuTest.php │ ├── login.php │ └── runSiteTests.php │ ├── Tweb.php │ ├── Unit │ ├── test-showjobs.php │ └── ui-picker-Test.php │ ├── Users │ ├── addUserTest.php │ ├── dupUserTest.php │ ├── emailUserTest.php │ ├── noEmailUserTest.php │ └── userEditAnyTest.php │ ├── VerifyTests │ ├── OneShot-lgpl2.1-T.php │ ├── OneShot-lgpl2.1.php │ ├── browseUploadedTest.php │ ├── bsam-verifyFoss23D1F1L.php │ ├── bsam-verifyFossDirsOnly.php │ ├── bsam-verifyFossI16L518.php │ ├── bsam │ │ ├── bsam-verifyFoss23D1F1L.php │ │ ├── bsam-verifyFossDirsOnly.php │ │ └── bsam-verifyFossI16L518.php │ ├── runVerifyTests.php │ ├── verifyFoss23D1F1L.php │ ├── verifyFossDirsOnly.php │ └── verifyFossI16L335U29.php │ ├── api │ ├── Controllers │ │ ├── AuthControllerTest.php │ │ ├── FolderControllerTest.php │ │ ├── GroupControllerTest.php │ │ ├── InfoControllerTest.php │ │ ├── JobControllerTest.php │ │ ├── LicenseControllerTest.php │ │ ├── MaintenanceControllerTest.php │ │ ├── ReportControllerTest.php │ │ ├── UploadControllerTest.php │ │ ├── UploadTreeControllerTest.php │ │ └── UserControllerTest.php │ ├── Helper │ │ ├── AuthHelperTest.php │ │ ├── DbHelperTest.php │ │ └── RestHelperTest.php │ ├── Models │ │ ├── AnalysisTest.php │ │ ├── ApiVersionTest.php │ │ ├── BulkHistoryTest.php │ │ ├── DeciderTest.php │ │ ├── FileTest.php │ │ ├── FolderTest.php │ │ ├── GroupPermissionsTest.php │ │ ├── GroupTest.php │ │ ├── InfoTest.php │ │ ├── JobTest.php │ │ ├── LicenseTest.php │ │ ├── ObligationTest.php │ │ ├── ReuserTest.php │ │ ├── ScanCodeTest.php │ │ ├── ScanOptionsTest.php │ │ ├── SearchResultTest.php │ │ ├── UploadSummaryTest.php │ │ ├── UploadTest.php │ │ ├── UserGroupMemberTest.php │ │ └── UserTest.php │ └── tests.xml │ ├── foss_ui.php │ ├── runDummy.php │ └── startUpTest.php └── utils ├── FossschemaSpy ├── OSADL_CONVERTOR.md ├── automation ├── .github-workflow.yml ├── .gitlab-ci.sample.yml ├── .travis.sample.yml ├── Dockerfile.ci ├── FoScanner │ ├── ApiConfig.py │ ├── CliOptions.py │ ├── FormatResults.py │ ├── RepoSetup.py │ ├── Scanners.py │ ├── SpdxReport.py │ ├── Utils.py │ └── __init__.py ├── allowlist.sample.json ├── allowlist.sample.json.license ├── fossologyscanner.py └── requirements.txt ├── backup ├── S3 │ ├── after │ ├── before │ ├── fo-backup-s3 │ ├── fo-restore-s3 │ └── install ├── backup_include_a ├── backup_include_b ├── fo-backup ├── fo-restore └── fo-restore.php ├── deploy-pages.sh ├── fedora ├── clean-tars.php ├── get-fsrc.php └── tarup-fedora.pl ├── fo-cleanold ├── fo-debuild ├── fo-installdeps ├── fo-mktar ├── fo_merge ├── fofind ├── fofindname ├── fofindui ├── freshmeat ├── Classes │ ├── FreshmeatRdfs.php │ └── GetFreshmeatRdf.php ├── Design-Notes ├── GetFM ├── ReadMe ├── diffm.php ├── diffm.pod ├── fm.cron ├── get-projects.php ├── get-projects.pod ├── lib_projxml.h.php ├── mk_fmdirs.php ├── mktop1k.php ├── mktop1k.pod ├── tests │ ├── GpTestSuite.php │ ├── TestPlan.txt │ ├── runGp.php │ ├── tReadInFile.php │ ├── tfile_comment │ ├── tfile_medium │ ├── tfile_small │ ├── tfmrdf.php │ └── tgetfm.php ├── trac.php └── wrapGFM ├── gitpod-install.sh ├── install_composer.sh ├── installagents ├── list_license.php ├── mkfilelists ├── mkpod ├── osadl_convertor.py ├── parse_license.php ├── prepare-test ├── prepare-vagrant-dev.sh ├── preprocess ├── preprocess_php ├── repo-range ├── requirements.osadl.txt ├── runBuild_v2.0.php ├── schemaspy.run ├── template.pod ├── unique.php └── utils.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.clang-format -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codeql/codeql-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/codeql/codeql-config.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/workflows/build-test.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/workflows/deploy-pages.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/workflows/docker-test.yml -------------------------------------------------------------------------------- /.github/workflows/static-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.github/workflows/static-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/FSFAP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSES/FSFAP.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSES/GPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.0-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSES/LGPL-2.0-only.txt -------------------------------------------------------------------------------- /LICENSES/LGPL-2.1-only.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSES/LGPL-2.1-only.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /LICENSES/W3C-19980720.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/LICENSES/W3C-19980720.txt -------------------------------------------------------------------------------- /NOTICES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/NOTICES -------------------------------------------------------------------------------- /NOTICES-THIRDPARTY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/NOTICES-THIRDPARTY.html -------------------------------------------------------------------------------- /NOTICES.spdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/NOTICES.spdx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/Vagrantfile -------------------------------------------------------------------------------- /cmake/FoPackPatch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/FoPackPatch.cmake -------------------------------------------------------------------------------- /cmake/FoPackaging.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/FoPackaging.cmake -------------------------------------------------------------------------------- /cmake/FoUtilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/FoUtilities.cmake -------------------------------------------------------------------------------- /cmake/FoVersionFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/FoVersionFile.cmake -------------------------------------------------------------------------------- /cmake/SetDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/SetDefaults.cmake -------------------------------------------------------------------------------- /cmake/TestInstall.make.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/TestInstall.make.in -------------------------------------------------------------------------------- /cmake/VERSION.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/VERSION.in -------------------------------------------------------------------------------- /cmake/VERSION.in.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: © Fossology contributors 2 | 3 | SPDX-License-Identifier: GPL-2.0-only -------------------------------------------------------------------------------- /cmake/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/cmake/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/common/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/common/conffiles -------------------------------------------------------------------------------- /debian/common/fossology-common.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/common/fossology-common.docs -------------------------------------------------------------------------------- /debian/common/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/common/postinst -------------------------------------------------------------------------------- /debian/common/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/common/postrm -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/db/conffiles: -------------------------------------------------------------------------------- 1 | /etc/cron.d/fossology 2 | -------------------------------------------------------------------------------- /debian/db/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/db/postinst -------------------------------------------------------------------------------- /debian/db/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/db/postrm -------------------------------------------------------------------------------- /debian/fossology.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/fossology.postinst -------------------------------------------------------------------------------- /debian/fossology.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/fossology.postrm -------------------------------------------------------------------------------- /debian/fossology/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/fossology/postinst -------------------------------------------------------------------------------- /debian/fossology/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/fossology/postrm -------------------------------------------------------------------------------- /debian/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/notes -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/scheduler/conffiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/scheduler/conffiles -------------------------------------------------------------------------------- /debian/scheduler/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/scheduler/postinst -------------------------------------------------------------------------------- /debian/scheduler/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/scheduler/postrm -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /debian/source/lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/source/lintian-overrides -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/watch -------------------------------------------------------------------------------- /debian/web/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/debian/web/postinst -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /fossology_doxygen.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/fossology_doxygen.conf -------------------------------------------------------------------------------- /install/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/CMakeLists.txt -------------------------------------------------------------------------------- /install/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/INSTALL -------------------------------------------------------------------------------- /install/INSTALL.multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/INSTALL.multi -------------------------------------------------------------------------------- /install/db/db.cron.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/db.cron.in -------------------------------------------------------------------------------- /install/db/dbcreate.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbcreate.in -------------------------------------------------------------------------------- /install/db/dbmigrate_1.4-2.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_1.4-2.0.php -------------------------------------------------------------------------------- /install/db/dbmigrate_2.0-2.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_2.0-2.1.php -------------------------------------------------------------------------------- /install/db/dbmigrate_2.1-2.2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_2.1-2.2.php -------------------------------------------------------------------------------- /install/db/dbmigrate_2.5-2.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_2.5-2.6.php -------------------------------------------------------------------------------- /install/db/dbmigrate_3.3-3.4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_3.3-3.4.php -------------------------------------------------------------------------------- /install/db/dbmigrate_3.5-3.6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_3.5-3.6.php -------------------------------------------------------------------------------- /install/db/dbmigrate_3.6-3.7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_3.6-3.7.php -------------------------------------------------------------------------------- /install/db/dbmigrate_3.7-3.8.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_3.7-3.8.php -------------------------------------------------------------------------------- /install/db/dbmigrate_4.0-4.1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_4.0-4.1.php -------------------------------------------------------------------------------- /install/db/dbmigrate_4.2-4.3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/dbmigrate_4.2-4.3.php -------------------------------------------------------------------------------- /install/db/export_license_ref.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/export_license_ref.php -------------------------------------------------------------------------------- /install/db/fo_mapping_license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/fo_mapping_license.php -------------------------------------------------------------------------------- /install/db/fossologyinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/fossologyinit.sql -------------------------------------------------------------------------------- /install/db/gitpod-fossologyinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/gitpod-fossologyinit.sql -------------------------------------------------------------------------------- /install/db/instance_uuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/instance_uuid.php -------------------------------------------------------------------------------- /install/db/licenseRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/licenseRef.json -------------------------------------------------------------------------------- /install/db/migratetest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/migratetest.php -------------------------------------------------------------------------------- /install/db/sanity_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/db/sanity_check.php -------------------------------------------------------------------------------- /install/defconf/Db.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/defconf/Db.conf.in -------------------------------------------------------------------------------- /install/defconf/fossology.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/defconf/fossology.conf.in -------------------------------------------------------------------------------- /install/defconf/samplefooter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/defconf/samplefooter.txt -------------------------------------------------------------------------------- /install/defconf/sampleheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/defconf/sampleheader.txt -------------------------------------------------------------------------------- /install/easy-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/easy-install -------------------------------------------------------------------------------- /install/fo-apache.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/fo-apache.conf -------------------------------------------------------------------------------- /install/fo-install-pythondeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/fo-install-pythondeps -------------------------------------------------------------------------------- /install/fo-postinstall.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/fo-postinstall.in -------------------------------------------------------------------------------- /install/fo_dbcheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/fo_dbcheck.php -------------------------------------------------------------------------------- /install/fossinit-common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/fossinit-common.php -------------------------------------------------------------------------------- /install/fossinit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/fossinit.php -------------------------------------------------------------------------------- /install/scripts/install-ninka.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/scripts/install-ninka.sh -------------------------------------------------------------------------------- /install/scripts/pgsql-conf-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/scripts/pgsql-conf-fix.sh -------------------------------------------------------------------------------- /install/scripts/php-conf-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/scripts/php-conf-fix.sh -------------------------------------------------------------------------------- /install/scripts/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/scripts/readme -------------------------------------------------------------------------------- /install/scripts/setshm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/install/scripts/setshm.sh -------------------------------------------------------------------------------- /pbconf/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/Vagrantfile -------------------------------------------------------------------------------- /pbconf/fossology.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology.pb -------------------------------------------------------------------------------- /pbconf/fossology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology.yml -------------------------------------------------------------------------------- /pbconf/fossology/deb/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/deb/README.Debian -------------------------------------------------------------------------------- /pbconf/fossology/deb/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/deb/changelog -------------------------------------------------------------------------------- /pbconf/fossology/deb/compat: -------------------------------------------------------------------------------- 1 | PBDEBCOMP 2 | -------------------------------------------------------------------------------- /pbconf/fossology/deb/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/deb/control -------------------------------------------------------------------------------- /pbconf/fossology/deb/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/deb/copyright -------------------------------------------------------------------------------- /pbconf/fossology/deb/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/deb/notes -------------------------------------------------------------------------------- /pbconf/fossology/deb/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/deb/rules -------------------------------------------------------------------------------- /pbconf/fossology/deb/source/format: -------------------------------------------------------------------------------- 1 | 1.0 2 | -------------------------------------------------------------------------------- /pbconf/fossology/pbve.pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/pbve.pre -------------------------------------------------------------------------------- /pbconf/fossology/rpm/fossology.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/fossology/rpm/fossology.spec -------------------------------------------------------------------------------- /pbconf/pbcl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pbconf/pbfilter/all.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/all.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/all.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/centos-6.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/centos-6.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/centos-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/centos-6.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/centos-7.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/centos-7.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/centos-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/centos-7.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-6.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-6.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-6.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-7.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-7.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-7.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-8.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-8.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-8.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-9.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-9.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/debian-9.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/debian-9.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora-15.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora-15.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora-15.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora-15.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora-17.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora-17.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora-17.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora-17.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora-18.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora-18.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora-18.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora-18.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/fedora.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/md.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/md.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/md.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/md.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/rhel.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/rhel.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/rhel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/rhel.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/rpm.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/rpm.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/rpm.yml -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-12.04.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-12.04.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-12.10.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-12.10.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-13.04.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-13.04.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-13.10.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-13.10.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-14.04.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-14.04.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-15.04.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-15.04.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-15.10.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-15.10.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-16.04.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-16.04.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-16.10.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-16.10.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu-17.04.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu-17.04.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu.pbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu.pbf -------------------------------------------------------------------------------- /pbconf/pbfilter/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/pbconf/pbfilter/ubuntu.yml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/adj2nest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/adj2nest/CMakeLists.txt -------------------------------------------------------------------------------- /src/adj2nest/adj2nest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/adj2nest/adj2nest.conf -------------------------------------------------------------------------------- /src/adj2nest/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/adj2nest/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/adj2nest/agent/adj2nest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/adj2nest/agent/adj2nest.c -------------------------------------------------------------------------------- /src/adj2nest/agent/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/adj2nest/agent/readme.txt -------------------------------------------------------------------------------- /src/adj2nest/ui/agent_adj2nest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/adj2nest/ui/agent_adj2nest.php -------------------------------------------------------------------------------- /src/buckets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/CMakeLists.txt -------------------------------------------------------------------------------- /src/buckets/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/buckets/agent/buckets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/buckets.c -------------------------------------------------------------------------------- /src/buckets/agent/buckets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/buckets.h -------------------------------------------------------------------------------- /src/buckets/agent/child.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/child.c -------------------------------------------------------------------------------- /src/buckets/agent/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/container.c -------------------------------------------------------------------------------- /src/buckets/agent/inits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/inits.c -------------------------------------------------------------------------------- /src/buckets/agent/leaf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/leaf.c -------------------------------------------------------------------------------- /src/buckets/agent/liccache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/liccache.c -------------------------------------------------------------------------------- /src/buckets/agent/liccache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/liccache.h -------------------------------------------------------------------------------- /src/buckets/agent/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/match.c -------------------------------------------------------------------------------- /src/buckets/agent/validate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/validate.c -------------------------------------------------------------------------------- /src/buckets/agent/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/walk.c -------------------------------------------------------------------------------- /src/buckets/agent/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/agent/write.c -------------------------------------------------------------------------------- /src/buckets/buckets.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/buckets.conf -------------------------------------------------------------------------------- /src/buckets/ui/agent-bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/ui/agent-bucket.php -------------------------------------------------------------------------------- /src/buckets/ui/ajax-filebucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/ui/ajax-filebucket.php -------------------------------------------------------------------------------- /src/buckets/ui/bucket-diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/ui/bucket-diff.php -------------------------------------------------------------------------------- /src/buckets/ui/ui-buckets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/buckets/ui/ui-buckets.php -------------------------------------------------------------------------------- /src/cli/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/CMakeLists.txt -------------------------------------------------------------------------------- /src/cli/acme_review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/acme_review.php -------------------------------------------------------------------------------- /src/cli/cp2foss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/cp2foss.php -------------------------------------------------------------------------------- /src/cli/cp2foss.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/cp2foss.pod -------------------------------------------------------------------------------- /src/cli/fo_antelink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_antelink.php -------------------------------------------------------------------------------- /src/cli/fo_bucket_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_bucket_list.php -------------------------------------------------------------------------------- /src/cli/fo_chmod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_chmod.php -------------------------------------------------------------------------------- /src/cli/fo_copyright_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_copyright_list.php -------------------------------------------------------------------------------- /src/cli/fo_folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_folder.php -------------------------------------------------------------------------------- /src/cli/fo_import_licenses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_import_licenses.php -------------------------------------------------------------------------------- /src/cli/fo_monk_license_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_monk_license_list.php -------------------------------------------------------------------------------- /src/cli/fo_ninka_license_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_ninka_license_list.php -------------------------------------------------------------------------------- /src/cli/fo_nomos_license_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_nomos_license_list.php -------------------------------------------------------------------------------- /src/cli/fo_tagfile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_tagfile.php -------------------------------------------------------------------------------- /src/cli/fo_tagfoss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_tagfoss.php -------------------------------------------------------------------------------- /src/cli/fo_usergroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_usergroup.php -------------------------------------------------------------------------------- /src/cli/fo_wrapper.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fo_wrapper.php.in -------------------------------------------------------------------------------- /src/cli/foss-scheduler.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/foss-scheduler.pod -------------------------------------------------------------------------------- /src/cli/fossjobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fossjobs.php -------------------------------------------------------------------------------- /src/cli/fossjobs.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fossjobs.pod -------------------------------------------------------------------------------- /src/cli/fossupload_status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/fossupload_status.php -------------------------------------------------------------------------------- /src/cli/mkpod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/mkpod -------------------------------------------------------------------------------- /src/cli/schema-export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/schema-export.php -------------------------------------------------------------------------------- /src/cli/tests/1stest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/1stest.php -------------------------------------------------------------------------------- /src/cli/tests/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/ReadMe -------------------------------------------------------------------------------- /src/cli/tests/TestPlan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/TestPlan.txt -------------------------------------------------------------------------------- /src/cli/tests/all_tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/all_tests.php -------------------------------------------------------------------------------- /src/cli/tests/dashR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/dashR.php -------------------------------------------------------------------------------- /src/cli/tests/desc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/desc.php -------------------------------------------------------------------------------- /src/cli/tests/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/install -------------------------------------------------------------------------------- /src/cli/tests/parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/parameters.php -------------------------------------------------------------------------------- /src/cli/tests/test_common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/test_common.php -------------------------------------------------------------------------------- /src/cli/tests/test_cp2foss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/test_cp2foss.php -------------------------------------------------------------------------------- /src/cli/tests/test_fossjobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/test_fossjobs.php -------------------------------------------------------------------------------- /src/cli/tests/test_oneshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/test_oneshot.php -------------------------------------------------------------------------------- /src/cli/tests/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cli/tests/tests.xml -------------------------------------------------------------------------------- /src/clixml/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/CMakeLists.txt -------------------------------------------------------------------------------- /src/clixml/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/clixml/agent/clixml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/agent/clixml.php -------------------------------------------------------------------------------- /src/clixml/agent/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/agent/services.php -------------------------------------------------------------------------------- /src/clixml/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/agent/version.php.in -------------------------------------------------------------------------------- /src/clixml/clixml.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/clixml.conf -------------------------------------------------------------------------------- /src/clixml/ui/CliXmlAgentPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/ui/CliXmlAgentPlugin.php -------------------------------------------------------------------------------- /src/clixml/ui/CliXmlGeneratorUi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/clixml/ui/CliXmlGeneratorUi.php -------------------------------------------------------------------------------- /src/compatibility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/compatibility/CMakeLists.txt -------------------------------------------------------------------------------- /src/compatibility/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/compatibility/mod_deps -------------------------------------------------------------------------------- /src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/composer.json -------------------------------------------------------------------------------- /src/composer.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/composer.json.in -------------------------------------------------------------------------------- /src/composer.json.in.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: © Fossology contributors 2 | 3 | SPDX-License-Identifier: GPL-2.0-only -------------------------------------------------------------------------------- /src/composer.json.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: © Fossology contributors 2 | 3 | SPDX-License-Identifier: GPL-2.0-only -------------------------------------------------------------------------------- /src/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/composer.lock -------------------------------------------------------------------------------- /src/composer.lock.license: -------------------------------------------------------------------------------- 1 | SPDX-FileCopyrightText: © Fossology contributors 2 | 3 | SPDX-License-Identifier: GPL-2.0-only -------------------------------------------------------------------------------- /src/copyright/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/CMakeLists.txt -------------------------------------------------------------------------------- /src/copyright/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/copyright/agent/cleanEntries.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/cleanEntries.cc -------------------------------------------------------------------------------- /src/copyright/agent/copyright.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/copyright.cc -------------------------------------------------------------------------------- /src/copyright/agent/copyright.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/copyright.conf -------------------------------------------------------------------------------- /src/copyright/agent/copyright.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/copyright.hpp -------------------------------------------------------------------------------- /src/copyright/agent/copyscan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/copyscan.cc -------------------------------------------------------------------------------- /src/copyright/agent/copyscan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/copyscan.hpp -------------------------------------------------------------------------------- /src/copyright/agent/database.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/database.cc -------------------------------------------------------------------------------- /src/copyright/agent/database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/database.hpp -------------------------------------------------------------------------------- /src/copyright/agent/ecc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/ecc.conf -------------------------------------------------------------------------------- /src/copyright/agent/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/identity.hpp -------------------------------------------------------------------------------- /src/copyright/agent/ipra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/ipra.conf -------------------------------------------------------------------------------- /src/copyright/agent/keyword.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/keyword.conf -------------------------------------------------------------------------------- /src/copyright/agent/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/regex.hpp -------------------------------------------------------------------------------- /src/copyright/agent/regscan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/regscan.cc -------------------------------------------------------------------------------- /src/copyright/agent/regscan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/regscan.hpp -------------------------------------------------------------------------------- /src/copyright/agent/scanners.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/scanners.cc -------------------------------------------------------------------------------- /src/copyright/agent/scanners.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/agent/scanners.hpp -------------------------------------------------------------------------------- /src/copyright/agent_tests/testdata/testdata38: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/copyright/agent_tests/testdata/testdata38_raw: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/copyright/copyright.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/copyright.conf -------------------------------------------------------------------------------- /src/copyright/ecc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ecc.conf -------------------------------------------------------------------------------- /src/copyright/ipra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ipra.conf -------------------------------------------------------------------------------- /src/copyright/keyword.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/keyword.conf -------------------------------------------------------------------------------- /src/copyright/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/mod_deps -------------------------------------------------------------------------------- /src/copyright/ui/CopyrightView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/CopyrightView.php -------------------------------------------------------------------------------- /src/copyright/ui/EccView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/EccView.php -------------------------------------------------------------------------------- /src/copyright/ui/HistogramBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/HistogramBase.php -------------------------------------------------------------------------------- /src/copyright/ui/IpraView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/IpraView.php -------------------------------------------------------------------------------- /src/copyright/ui/KeywordView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/KeywordView.php -------------------------------------------------------------------------------- /src/copyright/ui/Xpview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/Xpview.php -------------------------------------------------------------------------------- /src/copyright/ui/agent-ecc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/agent-ecc.php -------------------------------------------------------------------------------- /src/copyright/ui/agent-ipra.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/agent-ipra.php -------------------------------------------------------------------------------- /src/copyright/ui/agent-keyword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/agent-keyword.php -------------------------------------------------------------------------------- /src/copyright/ui/copyright-hist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/copyright-hist.php -------------------------------------------------------------------------------- /src/copyright/ui/ecc-hist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/ecc-hist.php -------------------------------------------------------------------------------- /src/copyright/ui/email-hist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/email-hist.php -------------------------------------------------------------------------------- /src/copyright/ui/ipra-hist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/ipra-hist.php -------------------------------------------------------------------------------- /src/copyright/ui/keyword-hist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/keyword-hist.php -------------------------------------------------------------------------------- /src/copyright/ui/library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/library.php -------------------------------------------------------------------------------- /src/copyright/ui/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/list.php -------------------------------------------------------------------------------- /src/copyright/ui/oneshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/oneshot.php -------------------------------------------------------------------------------- /src/copyright/ui/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/copyright/ui/services.php -------------------------------------------------------------------------------- /src/cyclonedx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cyclonedx/CMakeLists.txt -------------------------------------------------------------------------------- /src/cyclonedx/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cyclonedx/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/cyclonedx/agent/cyclonedx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cyclonedx/agent/cyclonedx.php -------------------------------------------------------------------------------- /src/cyclonedx/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cyclonedx/agent/version.php.in -------------------------------------------------------------------------------- /src/cyclonedx/cyclonedx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/cyclonedx/cyclonedx.conf -------------------------------------------------------------------------------- /src/debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/debug/CMakeLists.txt -------------------------------------------------------------------------------- /src/debug/ui/core-debug-fileloc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/debug/ui/core-debug-fileloc.php -------------------------------------------------------------------------------- /src/debug/ui/core-debug-menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/debug/ui/core-debug-menus.php -------------------------------------------------------------------------------- /src/debug/ui/core-debug-plugins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/debug/ui/core-debug-plugins.php -------------------------------------------------------------------------------- /src/debug/ui/core-debug-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/debug/ui/core-debug-user.php -------------------------------------------------------------------------------- /src/decider/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/CMakeLists.txt -------------------------------------------------------------------------------- /src/decider/agent/BulkReuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/agent/BulkReuser.php -------------------------------------------------------------------------------- /src/decider/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/decider/agent/DeciderAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/agent/DeciderAgent.php -------------------------------------------------------------------------------- /src/decider/agent/decider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/agent/decider.php -------------------------------------------------------------------------------- /src/decider/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/agent/version.php.in -------------------------------------------------------------------------------- /src/decider/decider.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/decider.conf -------------------------------------------------------------------------------- /src/decider/ui/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decider/ui/services.php -------------------------------------------------------------------------------- /src/deciderjob/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/deciderjob/CMakeLists.txt -------------------------------------------------------------------------------- /src/deciderjob/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/deciderjob/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/deciderjob/agent/deciderjob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/deciderjob/agent/deciderjob.php -------------------------------------------------------------------------------- /src/deciderjob/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/deciderjob/agent/version.php.in -------------------------------------------------------------------------------- /src/deciderjob/deciderjob.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/deciderjob/deciderjob.conf -------------------------------------------------------------------------------- /src/decisionexporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decisionexporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/decisionimporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/decisionimporter/CMakeLists.txt -------------------------------------------------------------------------------- /src/delagent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/CMakeLists.txt -------------------------------------------------------------------------------- /src/delagent/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/delagent/agent/delagent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/agent/delagent.c -------------------------------------------------------------------------------- /src/delagent/agent/delagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/agent/delagent.h -------------------------------------------------------------------------------- /src/delagent/agent/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/agent/util.c -------------------------------------------------------------------------------- /src/delagent/delagent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/delagent.conf -------------------------------------------------------------------------------- /src/delagent/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/mod_deps -------------------------------------------------------------------------------- /src/delagent/ui/DeleteMessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/ui/DeleteMessages.php -------------------------------------------------------------------------------- /src/delagent/ui/DeleteResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/ui/DeleteResponse.php -------------------------------------------------------------------------------- /src/delagent/ui/delete-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/ui/delete-helper.php -------------------------------------------------------------------------------- /src/delagent/ui/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/delagent/ui/services.php -------------------------------------------------------------------------------- /src/demomod/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/CMakeLists.txt -------------------------------------------------------------------------------- /src/demomod/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/README -------------------------------------------------------------------------------- /src/demomod/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/demomod/agent/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/agent/Notes -------------------------------------------------------------------------------- /src/demomod/agent/demomod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/agent/demomod.c -------------------------------------------------------------------------------- /src/demomod/agent/demomod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/agent/demomod.h -------------------------------------------------------------------------------- /src/demomod/agent/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/agent/process.c -------------------------------------------------------------------------------- /src/demomod/agent/usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/agent/usage.c -------------------------------------------------------------------------------- /src/demomod/agent/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/agent/utils.c -------------------------------------------------------------------------------- /src/demomod/demomod.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/demomod.conf -------------------------------------------------------------------------------- /src/demomod/ui/agent-demomod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/ui/agent-demomod.php -------------------------------------------------------------------------------- /src/demomod/ui/demohello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/ui/demohello.php -------------------------------------------------------------------------------- /src/demomod/ui/demomod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/demomod/ui/demomod.php -------------------------------------------------------------------------------- /src/dox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/dox.c -------------------------------------------------------------------------------- /src/example_wc_agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/example_wc_agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/fossy-ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/fossy-ruleset.xml -------------------------------------------------------------------------------- /src/genvendor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/genvendor/CMakeLists.txt -------------------------------------------------------------------------------- /src/genvendor/ComposerInstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/genvendor/ComposerInstall -------------------------------------------------------------------------------- /src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/c/fossconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/fossconfig.c -------------------------------------------------------------------------------- /src/lib/c/fossconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/fossconfig.h -------------------------------------------------------------------------------- /src/lib/c/fossconfigTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/fossconfigTest.c -------------------------------------------------------------------------------- /src/lib/c/libfossagent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossagent.c -------------------------------------------------------------------------------- /src/lib/c/libfossagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossagent.h -------------------------------------------------------------------------------- /src/lib/c/libfossagentref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossagentref.h -------------------------------------------------------------------------------- /src/lib/c/libfossdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossdb.c -------------------------------------------------------------------------------- /src/lib/c/libfossdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossdb.h -------------------------------------------------------------------------------- /src/lib/c/libfossdbmanager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossdbmanager.c -------------------------------------------------------------------------------- /src/lib/c/libfossdbmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossdbmanager.h -------------------------------------------------------------------------------- /src/lib/c/libfossology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossology.h -------------------------------------------------------------------------------- /src/lib/c/libfossrepo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossrepo.c -------------------------------------------------------------------------------- /src/lib/c/libfossrepo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossrepo.h -------------------------------------------------------------------------------- /src/lib/c/libfossscheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossscheduler.c -------------------------------------------------------------------------------- /src/lib/c/libfossscheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/libfossscheduler.h -------------------------------------------------------------------------------- /src/lib/c/repcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/repcat.c -------------------------------------------------------------------------------- /src/lib/c/repcopyin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/repcopyin.c -------------------------------------------------------------------------------- /src/lib/c/repexist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/repexist.c -------------------------------------------------------------------------------- /src/lib/c/rephost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/rephost.c -------------------------------------------------------------------------------- /src/lib/c/repmmapcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/repmmapcheck.c -------------------------------------------------------------------------------- /src/lib/c/reppath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/reppath.c -------------------------------------------------------------------------------- /src/lib/c/repremove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/repremove.c -------------------------------------------------------------------------------- /src/lib/c/repwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/repwrite.c -------------------------------------------------------------------------------- /src/lib/c/sqlCopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/sqlCopy.c -------------------------------------------------------------------------------- /src/lib/c/sqlCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/sqlCopy.h -------------------------------------------------------------------------------- /src/lib/c/sqlCopyTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/sqlCopyTest.c -------------------------------------------------------------------------------- /src/lib/c/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/c/tests/testClib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/tests/testClib.php -------------------------------------------------------------------------------- /src/lib/c/tests/test_fossconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/tests/test_fossconfig.c -------------------------------------------------------------------------------- /src/lib/c/tests/test_libfossdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/tests/test_libfossdb.c -------------------------------------------------------------------------------- /src/lib/c/tests/testlibs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/c/tests/testlibs.c -------------------------------------------------------------------------------- /src/lib/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/cpp/files.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/files.cc -------------------------------------------------------------------------------- /src/lib/cpp/files.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/files.hpp -------------------------------------------------------------------------------- /src/lib/cpp/libfossUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/libfossUtils.cc -------------------------------------------------------------------------------- /src/lib/cpp/libfossUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/libfossUtils.hpp -------------------------------------------------------------------------------- /src/lib/cpp/libfossdbQueryResult.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/libfossdbQueryResult.cc -------------------------------------------------------------------------------- /src/lib/cpp/libfossologyCPP.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/libfossologyCPP.hpp -------------------------------------------------------------------------------- /src/lib/cpp/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/cpp/tests/run_tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/tests/run_tests.cc -------------------------------------------------------------------------------- /src/lib/cpp/tests/testUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/tests/testUtils.hpp -------------------------------------------------------------------------------- /src/lib/cpp/uniquePtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/cpp/uniquePtr.hpp -------------------------------------------------------------------------------- /src/lib/php/Agent/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Agent/Agent.php -------------------------------------------------------------------------------- /src/lib/php/Auth/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Auth/Auth.php -------------------------------------------------------------------------------- /src/lib/php/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/php/Dao/AgentDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/AgentDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/AllDecisionsDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/AllDecisionsDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/ClearingDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/ClearingDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/CopyrightDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/CopyrightDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/FolderDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/FolderDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/HighlightDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/HighlightDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/JobDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/JobDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/LicenseDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/LicenseDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/PackageDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/PackageDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/PfileDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/PfileDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/ShowJobsDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/ShowJobsDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/SpashtDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/SpashtDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/SysConfigDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/SysConfigDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/TreeDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/TreeDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/UploadDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/UploadDao.php -------------------------------------------------------------------------------- /src/lib/php/Dao/UserDao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Dao/UserDao.php -------------------------------------------------------------------------------- /src/lib/php/Data/AgentRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Data/AgentRef.php -------------------------------------------------------------------------------- /src/lib/php/Data/Highlight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Data/Highlight.php -------------------------------------------------------------------------------- /src/lib/php/Data/JobStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Data/JobStatus.php -------------------------------------------------------------------------------- /src/lib/php/Data/License.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Data/License.php -------------------------------------------------------------------------------- /src/lib/php/Data/LicenseRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Data/LicenseRef.php -------------------------------------------------------------------------------- /src/lib/php/Data/Tree/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Data/Tree/Item.php -------------------------------------------------------------------------------- /src/lib/php/Data/Types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Data/Types.php -------------------------------------------------------------------------------- /src/lib/php/Db/DbManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Db/DbManager.php -------------------------------------------------------------------------------- /src/lib/php/Db/Driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Db/Driver.php -------------------------------------------------------------------------------- /src/lib/php/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Exception.php -------------------------------------------------------------------------------- /src/lib/php/Html/HtmlElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Html/HtmlElement.php -------------------------------------------------------------------------------- /src/lib/php/Html/LinkElement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Html/LinkElement.php -------------------------------------------------------------------------------- /src/lib/php/Plugin/FO_Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Plugin/FO_Plugin.php -------------------------------------------------------------------------------- /src/lib/php/Plugin/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Plugin/Plugin.php -------------------------------------------------------------------------------- /src/lib/php/Test/Reflectory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Test/Reflectory.php -------------------------------------------------------------------------------- /src/lib/php/Test/TestLiteDb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Test/TestLiteDb.php -------------------------------------------------------------------------------- /src/lib/php/Test/TestPgDb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Test/TestPgDb.php -------------------------------------------------------------------------------- /src/lib/php/Test/repo/files/9058e69879bc8eb9b90688d6afc4061692214798.21cd829574210f39a89e9389246b9eaf.1804: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/php/Test/repo/files/a24c423da4189de61d320f86dac6d61fb1b414a4.fb428f421a053bf3ff4456ef18cfeac6.2616: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/php/Test/repo/files/cd939e768cf3dd6a9174d316d72a6592905badf3.1e695642d1d76caa17696bc4a6a44244.6515: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/php/Test/testdata.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Test/testdata.sql -------------------------------------------------------------------------------- /src/lib/php/Text/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/Text/Converter.php -------------------------------------------------------------------------------- /src/lib/php/UI/FolderNav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/UI/FolderNav.php -------------------------------------------------------------------------------- /src/lib/php/UI/MenuHook.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/UI/MenuHook.php -------------------------------------------------------------------------------- /src/lib/php/UI/MenuRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/UI/MenuRenderer.php -------------------------------------------------------------------------------- /src/lib/php/View/PagedResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/View/PagedResult.php -------------------------------------------------------------------------------- /src/lib/php/View/UrlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/View/UrlBuilder.php -------------------------------------------------------------------------------- /src/lib/php/bootstrap.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/bootstrap.php.in -------------------------------------------------------------------------------- /src/lib/php/common-active.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-active.php -------------------------------------------------------------------------------- /src/lib/php/common-agents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-agents.php -------------------------------------------------------------------------------- /src/lib/php/common-auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-auth.php -------------------------------------------------------------------------------- /src/lib/php/common-buckets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-buckets.php -------------------------------------------------------------------------------- /src/lib/php/common-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-cache.php -------------------------------------------------------------------------------- /src/lib/php/common-cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-cli.php -------------------------------------------------------------------------------- /src/lib/php/common-compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-compare.php -------------------------------------------------------------------------------- /src/lib/php/common-container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-container.php -------------------------------------------------------------------------------- /src/lib/php/common-db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-db.php -------------------------------------------------------------------------------- /src/lib/php/common-dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-dir.php -------------------------------------------------------------------------------- /src/lib/php/common-folders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-folders.php -------------------------------------------------------------------------------- /src/lib/php/common-job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-job.php -------------------------------------------------------------------------------- /src/lib/php/common-menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-menu.php -------------------------------------------------------------------------------- /src/lib/php/common-parm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-parm.php -------------------------------------------------------------------------------- /src/lib/php/common-perms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-perms.php -------------------------------------------------------------------------------- /src/lib/php/common-pkg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-pkg.php -------------------------------------------------------------------------------- /src/lib/php/common-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-plugin.php -------------------------------------------------------------------------------- /src/lib/php/common-repo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-repo.php -------------------------------------------------------------------------------- /src/lib/php/common-scheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-scheduler.php -------------------------------------------------------------------------------- /src/lib/php/common-string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-string.php -------------------------------------------------------------------------------- /src/lib/php/common-sysconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-sysconfig.php -------------------------------------------------------------------------------- /src/lib/php/common-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-tags.php -------------------------------------------------------------------------------- /src/lib/php/common-ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-ui.php -------------------------------------------------------------------------------- /src/lib/php/common-users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common-users.php -------------------------------------------------------------------------------- /src/lib/php/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/common.php -------------------------------------------------------------------------------- /src/lib/php/fossdash-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/fossdash-config.php -------------------------------------------------------------------------------- /src/lib/php/libschema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/libschema.php -------------------------------------------------------------------------------- /src/lib/php/services.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/services.xml.in -------------------------------------------------------------------------------- /src/lib/php/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/tests/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/php/tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/tests/README -------------------------------------------------------------------------------- /src/lib/php/tests/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/lib/php/tests/tests.xml -------------------------------------------------------------------------------- /src/maintagent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/maintagent/CMakeLists.txt -------------------------------------------------------------------------------- /src/maintagent/agent/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/maintagent/agent/process.c -------------------------------------------------------------------------------- /src/maintagent/agent/usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/maintagent/agent/usage.c -------------------------------------------------------------------------------- /src/maintagent/agent/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/maintagent/agent/utils.c -------------------------------------------------------------------------------- /src/maintagent/maintagent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/maintagent/maintagent.conf -------------------------------------------------------------------------------- /src/maintagent/ui/maintagent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/maintagent/ui/maintagent.php -------------------------------------------------------------------------------- /src/mimetype/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/mimetype/CMakeLists.txt -------------------------------------------------------------------------------- /src/mimetype/agent/finder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/mimetype/agent/finder.c -------------------------------------------------------------------------------- /src/mimetype/agent/finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/mimetype/agent/finder.h -------------------------------------------------------------------------------- /src/mimetype/agent/mimetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/mimetype/agent/mimetype.c -------------------------------------------------------------------------------- /src/mimetype/mimetype.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/mimetype/mimetype.conf -------------------------------------------------------------------------------- /src/mimetype/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/mimetype/mod_deps -------------------------------------------------------------------------------- /src/monk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/CMakeLists.txt -------------------------------------------------------------------------------- /src/monk/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/monk/agent/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/cli.c -------------------------------------------------------------------------------- /src/monk/agent/cli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/cli.h -------------------------------------------------------------------------------- /src/monk/agent/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/common.c -------------------------------------------------------------------------------- /src/monk/agent/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/common.h -------------------------------------------------------------------------------- /src/monk/agent/database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/database.c -------------------------------------------------------------------------------- /src/monk/agent/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/database.h -------------------------------------------------------------------------------- /src/monk/agent/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/diff.c -------------------------------------------------------------------------------- /src/monk/agent/diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/diff.h -------------------------------------------------------------------------------- /src/monk/agent/encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/encoding.c -------------------------------------------------------------------------------- /src/monk/agent/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/encoding.h -------------------------------------------------------------------------------- /src/monk/agent/file_operations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/file_operations.c -------------------------------------------------------------------------------- /src/monk/agent/file_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/file_operations.h -------------------------------------------------------------------------------- /src/monk/agent/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/hash.c -------------------------------------------------------------------------------- /src/monk/agent/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/hash.h -------------------------------------------------------------------------------- /src/monk/agent/highlight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/highlight.c -------------------------------------------------------------------------------- /src/monk/agent/highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/highlight.h -------------------------------------------------------------------------------- /src/monk/agent/license.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/license.c -------------------------------------------------------------------------------- /src/monk/agent/license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/license.h -------------------------------------------------------------------------------- /src/monk/agent/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/match.c -------------------------------------------------------------------------------- /src/monk/agent/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/match.h -------------------------------------------------------------------------------- /src/monk/agent/monk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/monk.c -------------------------------------------------------------------------------- /src/monk/agent/monk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/monk.h -------------------------------------------------------------------------------- /src/monk/agent/monkbulk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/monkbulk.c -------------------------------------------------------------------------------- /src/monk/agent/monkbulk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/monkbulk.h -------------------------------------------------------------------------------- /src/monk/agent/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/scheduler.c -------------------------------------------------------------------------------- /src/monk/agent/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/scheduler.h -------------------------------------------------------------------------------- /src/monk/agent/serialize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/serialize.c -------------------------------------------------------------------------------- /src/monk/agent/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/agent/serialize.h -------------------------------------------------------------------------------- /src/monk/monk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/monk.conf -------------------------------------------------------------------------------- /src/monk/monkbulk.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/monkbulk.conf -------------------------------------------------------------------------------- /src/monk/ui/agent-monk-bulk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/ui/agent-monk-bulk.php -------------------------------------------------------------------------------- /src/monk/ui/agent-monk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/ui/agent-monk.php -------------------------------------------------------------------------------- /src/monk/ui/oneshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/monk/ui/oneshot.php -------------------------------------------------------------------------------- /src/ninka/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/CMakeLists.txt -------------------------------------------------------------------------------- /src/ninka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/README.md -------------------------------------------------------------------------------- /src/ninka/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/ninka/agent/licensematch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/licensematch.cc -------------------------------------------------------------------------------- /src/ninka/agent/licensematch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/licensematch.hpp -------------------------------------------------------------------------------- /src/ninka/agent/ninka.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/ninka.cc -------------------------------------------------------------------------------- /src/ninka/agent/ninka.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/ninka.hpp -------------------------------------------------------------------------------- /src/ninka/agent/ninkawrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/ninkawrapper.cc -------------------------------------------------------------------------------- /src/ninka/agent/ninkawrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/ninkawrapper.hpp -------------------------------------------------------------------------------- /src/ninka/agent/state.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/state.cc -------------------------------------------------------------------------------- /src/ninka/agent/state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/state.hpp -------------------------------------------------------------------------------- /src/ninka/agent/utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/utils.cc -------------------------------------------------------------------------------- /src/ninka/agent/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/agent/utils.hpp -------------------------------------------------------------------------------- /src/ninka/ninka.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/ninka.conf -------------------------------------------------------------------------------- /src/ninka/ui/agent-ninka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ninka/ui/agent-ninka.php -------------------------------------------------------------------------------- /src/nomos/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/CMakeLists.txt -------------------------------------------------------------------------------- /src/nomos/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/nomos/agent/DMalloc.3x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/DMalloc.3x -------------------------------------------------------------------------------- /src/nomos/agent/DMalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/DMalloc.c -------------------------------------------------------------------------------- /src/nomos/agent/DMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/DMalloc.h -------------------------------------------------------------------------------- /src/nomos/agent/Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/Notes -------------------------------------------------------------------------------- /src/nomos/agent/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/README -------------------------------------------------------------------------------- /src/nomos/agent/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/encode.c -------------------------------------------------------------------------------- /src/nomos/agent/json_writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/json_writer.c -------------------------------------------------------------------------------- /src/nomos/agent/json_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/json_writer.h -------------------------------------------------------------------------------- /src/nomos/agent/licenses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/licenses.c -------------------------------------------------------------------------------- /src/nomos/agent/licenses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/licenses.h -------------------------------------------------------------------------------- /src/nomos/agent/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/list.c -------------------------------------------------------------------------------- /src/nomos/agent/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/list.h -------------------------------------------------------------------------------- /src/nomos/agent/nomos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos.c -------------------------------------------------------------------------------- /src/nomos/agent/nomos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos.h -------------------------------------------------------------------------------- /src/nomos/agent/nomos_gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos_gap.c -------------------------------------------------------------------------------- /src/nomos/agent/nomos_gap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos_gap.h -------------------------------------------------------------------------------- /src/nomos/agent/nomos_regex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos_regex.c -------------------------------------------------------------------------------- /src/nomos/agent/nomos_regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos_regex.h -------------------------------------------------------------------------------- /src/nomos/agent/nomos_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos_utils.c -------------------------------------------------------------------------------- /src/nomos/agent/nomos_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/nomos_utils.h -------------------------------------------------------------------------------- /src/nomos/agent/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/parse.c -------------------------------------------------------------------------------- /src/nomos/agent/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/parse.h -------------------------------------------------------------------------------- /src/nomos/agent/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/process.c -------------------------------------------------------------------------------- /src/nomos/agent/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/process.h -------------------------------------------------------------------------------- /src/nomos/agent/standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/standalone.c -------------------------------------------------------------------------------- /src/nomos/agent/standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/standalone.h -------------------------------------------------------------------------------- /src/nomos/agent/transition.notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/transition.notes -------------------------------------------------------------------------------- /src/nomos/agent/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/util.c -------------------------------------------------------------------------------- /src/nomos/agent/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/agent/util.h -------------------------------------------------------------------------------- /src/nomos/agent_tests/testdata/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nomos/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/mod_deps -------------------------------------------------------------------------------- /src/nomos/nomos.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/nomos.conf -------------------------------------------------------------------------------- /src/nomos/ui/agent-nomos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/ui/agent-nomos.php -------------------------------------------------------------------------------- /src/nomos/ui/ajax-filelic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/ui/ajax-filelic.php -------------------------------------------------------------------------------- /src/nomos/ui/nomos-diff.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/nomos/ui/nomos-diff.php -------------------------------------------------------------------------------- /src/ojo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/CMakeLists.txt -------------------------------------------------------------------------------- /src/ojo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/README.md -------------------------------------------------------------------------------- /src/ojo/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/ojo/agent/OjoAgent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/OjoAgent.cc -------------------------------------------------------------------------------- /src/ojo/agent/OjoAgent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/OjoAgent.hpp -------------------------------------------------------------------------------- /src/ojo/agent/OjoState.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/OjoState.cc -------------------------------------------------------------------------------- /src/ojo/agent/OjoState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/OjoState.hpp -------------------------------------------------------------------------------- /src/ojo/agent/OjoUtils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/OjoUtils.cc -------------------------------------------------------------------------------- /src/ojo/agent/OjoUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/OjoUtils.hpp -------------------------------------------------------------------------------- /src/ojo/agent/directoryScan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/directoryScan.cc -------------------------------------------------------------------------------- /src/ojo/agent/directoryScan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/directoryScan.hpp -------------------------------------------------------------------------------- /src/ojo/agent/ojomatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/ojomatch.hpp -------------------------------------------------------------------------------- /src/ojo/agent/ojoregex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/ojoregex.cc -------------------------------------------------------------------------------- /src/ojo/agent/ojoregex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/ojoregex.hpp -------------------------------------------------------------------------------- /src/ojo/agent/ojos.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/ojos.cc -------------------------------------------------------------------------------- /src/ojo/agent/ojos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/agent/ojos.hpp -------------------------------------------------------------------------------- /src/ojo/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/mod_deps -------------------------------------------------------------------------------- /src/ojo/ojo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/ojo.conf -------------------------------------------------------------------------------- /src/ojo/ui/agent-ojos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ojo/ui/agent-ojos.php -------------------------------------------------------------------------------- /src/phpunit-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/phpunit-bootstrap.php -------------------------------------------------------------------------------- /src/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/phpunit.xml -------------------------------------------------------------------------------- /src/pkgagent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/pkgagent/CMakeLists.txt -------------------------------------------------------------------------------- /src/pkgagent/agent/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/pkgagent/agent/main.c -------------------------------------------------------------------------------- /src/pkgagent/agent/pkgagent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/pkgagent/agent/pkgagent.c -------------------------------------------------------------------------------- /src/pkgagent/agent/pkgagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/pkgagent/agent/pkgagent.h -------------------------------------------------------------------------------- /src/pkgagent/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/pkgagent/mod_deps -------------------------------------------------------------------------------- /src/pkgagent/pkgagent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/pkgagent/pkgagent.conf -------------------------------------------------------------------------------- /src/readmeoss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/readmeoss/CMakeLists.txt -------------------------------------------------------------------------------- /src/readmeoss/readmeoss.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/readmeoss/readmeoss.conf -------------------------------------------------------------------------------- /src/regexscan/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/regexscan/CMakeLists.txt -------------------------------------------------------------------------------- /src/regexscan/agent/regexscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/regexscan/agent/regexscan.c -------------------------------------------------------------------------------- /src/regexscan/regexscan.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/regexscan/regexscan.conf -------------------------------------------------------------------------------- /src/reportImport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reportImport/CMakeLists.txt -------------------------------------------------------------------------------- /src/reportImport/ui/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reportImport/ui/services.php -------------------------------------------------------------------------------- /src/reso/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reso/CMakeLists.txt -------------------------------------------------------------------------------- /src/reso/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reso/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/reso/agent/ResoAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reso/agent/ResoAgent.php -------------------------------------------------------------------------------- /src/reso/agent/reso.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reso/agent/reso.php -------------------------------------------------------------------------------- /src/reso/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reso/agent/version.php.in -------------------------------------------------------------------------------- /src/reso/reso.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reso/reso.conf -------------------------------------------------------------------------------- /src/reso/ui/ResoAgentPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reso/ui/ResoAgentPlugin.php -------------------------------------------------------------------------------- /src/reuser/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/CMakeLists.txt -------------------------------------------------------------------------------- /src/reuser/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/reuser/agent/ReuserAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/agent/ReuserAgent.php -------------------------------------------------------------------------------- /src/reuser/agent/reuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/agent/reuser.php -------------------------------------------------------------------------------- /src/reuser/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/agent/version.php.in -------------------------------------------------------------------------------- /src/reuser/reuser.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/reuser.conf -------------------------------------------------------------------------------- /src/reuser/ui/agent-reuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/ui/agent-reuser.php -------------------------------------------------------------------------------- /src/reuser/ui/reuser-plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/ui/reuser-plugin.php -------------------------------------------------------------------------------- /src/reuser/ui/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/reuser/ui/services.php -------------------------------------------------------------------------------- /src/scancode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/CMakeLists.txt -------------------------------------------------------------------------------- /src/scancode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/README.md -------------------------------------------------------------------------------- /src/scancode/agent/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/agent/match.cc -------------------------------------------------------------------------------- /src/scancode/agent/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/agent/match.hpp -------------------------------------------------------------------------------- /src/scancode/agent/scancode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/agent/scancode.cc -------------------------------------------------------------------------------- /src/scancode/agent/scancode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/agent/scancode.hpp -------------------------------------------------------------------------------- /src/scancode/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/mod_deps -------------------------------------------------------------------------------- /src/scancode/scancode.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/scancode.conf -------------------------------------------------------------------------------- /src/scancode/ui/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scancode/ui/services.php -------------------------------------------------------------------------------- /src/scanoss/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/CMakeLists.txt -------------------------------------------------------------------------------- /src/scanoss/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/README.MD -------------------------------------------------------------------------------- /src/scanoss/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/scanoss/agent/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/agent/main.c -------------------------------------------------------------------------------- /src/scanoss/agent/snippet_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/agent/snippet_scan.c -------------------------------------------------------------------------------- /src/scanoss/agent/snippet_scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/agent/snippet_scan.h -------------------------------------------------------------------------------- /src/scanoss/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/mod_deps -------------------------------------------------------------------------------- /src/scanoss/pics/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/pics/screenshot1.png -------------------------------------------------------------------------------- /src/scanoss/pics/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/pics/screenshot2.png -------------------------------------------------------------------------------- /src/scanoss/pics/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/pics/screenshot3.png -------------------------------------------------------------------------------- /src/scanoss/scanoss.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/scanoss.conf -------------------------------------------------------------------------------- /src/scanoss/ui/agent-scanoss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scanoss/ui/agent-scanoss.php -------------------------------------------------------------------------------- /src/scheduler/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/CMakeLists.txt -------------------------------------------------------------------------------- /src/scheduler/TestInstall.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/TestInstall.make -------------------------------------------------------------------------------- /src/scheduler/agent/agent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/agent.c -------------------------------------------------------------------------------- /src/scheduler/agent/agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/agent.h -------------------------------------------------------------------------------- /src/scheduler/agent/database.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/database.c -------------------------------------------------------------------------------- /src/scheduler/agent/database.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/database.h -------------------------------------------------------------------------------- /src/scheduler/agent/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/event.c -------------------------------------------------------------------------------- /src/scheduler/agent/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/event.h -------------------------------------------------------------------------------- /src/scheduler/agent/fo_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/fo_cli.c -------------------------------------------------------------------------------- /src/scheduler/agent/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/host.c -------------------------------------------------------------------------------- /src/scheduler/agent/host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/host.h -------------------------------------------------------------------------------- /src/scheduler/agent/interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/interface.c -------------------------------------------------------------------------------- /src/scheduler/agent/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/interface.h -------------------------------------------------------------------------------- /src/scheduler/agent/job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/job.c -------------------------------------------------------------------------------- /src/scheduler/agent/job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/job.h -------------------------------------------------------------------------------- /src/scheduler/agent/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/logging.c -------------------------------------------------------------------------------- /src/scheduler/agent/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/logging.h -------------------------------------------------------------------------------- /src/scheduler/agent/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/scheduler.c -------------------------------------------------------------------------------- /src/scheduler/agent/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/agent/scheduler.h -------------------------------------------------------------------------------- /src/scheduler/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/scheduler/mod_deps -------------------------------------------------------------------------------- /src/spasht/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/CMakeLists.txt -------------------------------------------------------------------------------- /src/spasht/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/spasht/agent/SpashtAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/agent/SpashtAgent.php -------------------------------------------------------------------------------- /src/spasht/agent/spasht.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/agent/spasht.php -------------------------------------------------------------------------------- /src/spasht/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/agent/version.php.in -------------------------------------------------------------------------------- /src/spasht/spasht.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/spasht.conf -------------------------------------------------------------------------------- /src/spasht/ui/agent-spasht.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/ui/agent-spasht.php -------------------------------------------------------------------------------- /src/spasht/ui/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/ui/services.php -------------------------------------------------------------------------------- /src/spasht/ui/ui-spasht.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spasht/ui/ui-spasht.php -------------------------------------------------------------------------------- /src/spdx2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/CMakeLists.txt -------------------------------------------------------------------------------- /src/spdx2/agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/spdx2/agent/agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/agent/agent.sh -------------------------------------------------------------------------------- /src/spdx2/agent/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/agent/services.php -------------------------------------------------------------------------------- /src/spdx2/agent/spdx2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/agent/spdx2.php -------------------------------------------------------------------------------- /src/spdx2/agent/spdx2utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/agent/spdx2utils.php -------------------------------------------------------------------------------- /src/spdx2/agent/version.php.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/agent/version.php.in -------------------------------------------------------------------------------- /src/spdx2/dep5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/dep5.conf -------------------------------------------------------------------------------- /src/spdx2/spdx2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/spdx2.conf -------------------------------------------------------------------------------- /src/spdx2/spdx2csv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/spdx2csv.conf -------------------------------------------------------------------------------- /src/spdx2/spdx2tv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/spdx2/spdx2tv.conf -------------------------------------------------------------------------------- /src/srcdocs/fodox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/srcdocs/fodox.conf -------------------------------------------------------------------------------- /src/srcdocs/makedox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/srcdocs/makedox -------------------------------------------------------------------------------- /src/testing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/README -------------------------------------------------------------------------------- /src/testing/checkTestData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/checkTestData.php -------------------------------------------------------------------------------- /src/testing/dataFiles/mailTo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/dataFiles/mailTo.php -------------------------------------------------------------------------------- /src/testing/db/TestDbFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/db/TestDbFactory.php -------------------------------------------------------------------------------- /src/testing/db/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/db/c/CMakeLists.txt -------------------------------------------------------------------------------- /src/testing/db/createTestDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/db/createTestDB.php -------------------------------------------------------------------------------- /src/testing/db/fosstestinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/db/fosstestinit.sql -------------------------------------------------------------------------------- /src/testing/db/ftdbcreate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/db/ftdbcreate.sh -------------------------------------------------------------------------------- /src/testing/fo_integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/fo_integration.php -------------------------------------------------------------------------------- /src/testing/fointeg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/fointeg.php -------------------------------------------------------------------------------- /src/testing/install/vm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/install/vm.ini -------------------------------------------------------------------------------- /src/testing/install/vmcheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/install/vmcheck.php -------------------------------------------------------------------------------- /src/testing/install/vmrevert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/install/vmrevert.php -------------------------------------------------------------------------------- /src/testing/install/whatos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/install/whatos -------------------------------------------------------------------------------- /src/testing/lib/TestRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/TestRun.php -------------------------------------------------------------------------------- /src/testing/lib/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/bootstrap.php -------------------------------------------------------------------------------- /src/testing/lib/c/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/c/CMakeLists.txt -------------------------------------------------------------------------------- /src/testing/lib/c/libfocunit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/c/libfocunit.c -------------------------------------------------------------------------------- /src/testing/lib/c/libfocunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/c/libfocunit.h -------------------------------------------------------------------------------- /src/testing/lib/common-Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/common-Test.php -------------------------------------------------------------------------------- /src/testing/lib/common-Ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/common-Ui.php -------------------------------------------------------------------------------- /src/testing/lib/common-vm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/common-vm.php -------------------------------------------------------------------------------- /src/testing/lib/createRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/createRC.php -------------------------------------------------------------------------------- /src/testing/lib/libTestDB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/libTestDB.php -------------------------------------------------------------------------------- /src/testing/lib/reportClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/lib/reportClass.php -------------------------------------------------------------------------------- /src/testing/performance/drawline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/performance/drawline -------------------------------------------------------------------------------- /src/testing/performance/stress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/performance/stress -------------------------------------------------------------------------------- /src/testing/reports/xml2html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/reports/xml2html.php -------------------------------------------------------------------------------- /src/testing/syntax/syntaxtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/syntax/syntaxtest.sh -------------------------------------------------------------------------------- /src/testing/unit/runPkgUnitTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/unit/runPkgUnitTests -------------------------------------------------------------------------------- /src/testing/utils/Install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/Install.php -------------------------------------------------------------------------------- /src/testing/utils/Nightly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/Nightly.php -------------------------------------------------------------------------------- /src/testing/utils/cleanRF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/cleanRF.php -------------------------------------------------------------------------------- /src/testing/utils/createRC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/createRC.php -------------------------------------------------------------------------------- /src/testing/utils/dbcreate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/dbcreate -------------------------------------------------------------------------------- /src/testing/utils/makeDbUser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/makeDbUser -------------------------------------------------------------------------------- /src/testing/utils/nightly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/nightly.sh -------------------------------------------------------------------------------- /src/testing/utils/testCleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/testCleanup.sh -------------------------------------------------------------------------------- /src/testing/utils/testDBinit.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/testDBinit.sql -------------------------------------------------------------------------------- /src/testing/utils/upl1File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/upl1File.php -------------------------------------------------------------------------------- /src/testing/utils/wait4jobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/testing/utils/wait4jobs.php -------------------------------------------------------------------------------- /src/unifiedreport/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/unifiedreport/CMakeLists.txt -------------------------------------------------------------------------------- /src/ununpack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/CMakeLists.txt -------------------------------------------------------------------------------- /src/ununpack/agent/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/README -------------------------------------------------------------------------------- /src/ununpack/agent/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/checksum.c -------------------------------------------------------------------------------- /src/ununpack/agent/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/checksum.h -------------------------------------------------------------------------------- /src/ununpack/agent/departition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/departition.c -------------------------------------------------------------------------------- /src/ununpack/agent/externs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/externs.h -------------------------------------------------------------------------------- /src/ununpack/agent/standalone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/standalone.c -------------------------------------------------------------------------------- /src/ununpack/agent/standalone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/standalone.h -------------------------------------------------------------------------------- /src/ununpack/agent/traverse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/traverse.c -------------------------------------------------------------------------------- /src/ununpack/agent/ununpack-ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/ununpack-ar.c -------------------------------------------------------------------------------- /src/ununpack/agent/ununpack-ar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/ununpack-ar.h -------------------------------------------------------------------------------- /src/ununpack/agent/ununpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/ununpack.c -------------------------------------------------------------------------------- /src/ununpack/agent/ununpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/ununpack.h -------------------------------------------------------------------------------- /src/ununpack/agent/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/agent/utils.c -------------------------------------------------------------------------------- /src/ununpack/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/mod_deps -------------------------------------------------------------------------------- /src/ununpack/ui/agent-unpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/ui/agent-unpack.php -------------------------------------------------------------------------------- /src/ununpack/ui/ui-reunpack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/ui/ui-reunpack.php -------------------------------------------------------------------------------- /src/ununpack/ununpack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/ununpack/ununpack.conf -------------------------------------------------------------------------------- /src/wget_agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/wget_agent/CMakeLists.txt -------------------------------------------------------------------------------- /src/wget_agent/agent/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/wget_agent/agent/main.c -------------------------------------------------------------------------------- /src/wget_agent/mod_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/wget_agent/mod_deps -------------------------------------------------------------------------------- /src/wget_agent/ui/wget_agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/wget_agent/ui/wget_agent.php -------------------------------------------------------------------------------- /src/wget_agent/wget_agent.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/wget_agent/wget_agent.conf -------------------------------------------------------------------------------- /src/www/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/CMakeLists.txt -------------------------------------------------------------------------------- /src/www/ui/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/README.txt -------------------------------------------------------------------------------- /src/www/ui/acme_review.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/acme_review.php -------------------------------------------------------------------------------- /src/www/ui/admin-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/admin-config.php -------------------------------------------------------------------------------- /src/www/ui/admin-folder-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/admin-folder-edit.php -------------------------------------------------------------------------------- /src/www/ui/admin-folder-size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/admin-folder-size.php -------------------------------------------------------------------------------- /src/www/ui/admin-scheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/admin-scheduler.php -------------------------------------------------------------------------------- /src/www/ui/admin-tag-manage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/admin-tag-manage.php -------------------------------------------------------------------------------- /src/www/ui/admin-tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/admin-tag.php -------------------------------------------------------------------------------- /src/www/ui/admin-upload-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/admin-upload-edit.php -------------------------------------------------------------------------------- /src/www/ui/agent-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/agent-add.php -------------------------------------------------------------------------------- /src/www/ui/ajax-manage-tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ajax-manage-tag.php -------------------------------------------------------------------------------- /src/www/ui/ajax-notice-files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ajax-notice-files.php -------------------------------------------------------------------------------- /src/www/ui/ajax-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ajax-tags.php -------------------------------------------------------------------------------- /src/www/ui/ajax-uploads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ajax-uploads.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Agent.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Conf.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/File.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Folder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Folder.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Group.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Hash.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Info.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Job.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Reuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Reuser.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/Upload.php -------------------------------------------------------------------------------- /src/www/ui/api/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/Models/User.php -------------------------------------------------------------------------------- /src/www/ui/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/api/index.php -------------------------------------------------------------------------------- /src/www/ui/async/AjaxBrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/async/AjaxBrowse.php -------------------------------------------------------------------------------- /src/www/ui/async/AjaxJobInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/async/AjaxJobInfo.php -------------------------------------------------------------------------------- /src/www/ui/core-auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/core-auth.php -------------------------------------------------------------------------------- /src/www/ui/core-init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/core-init.php -------------------------------------------------------------------------------- /src/www/ui/core-schema.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/core-schema.dat -------------------------------------------------------------------------------- /src/www/ui/core-smauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/core-smauth.php -------------------------------------------------------------------------------- /src/www/ui/css/access-token.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/access-token.css -------------------------------------------------------------------------------- /src/www/ui/css/csshover.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/csshover.htc -------------------------------------------------------------------------------- /src/www/ui/css/fossology.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/fossology.css -------------------------------------------------------------------------------- /src/www/ui/css/highlights.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/highlights.css -------------------------------------------------------------------------------- /src/www/ui/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/jquery-ui.css -------------------------------------------------------------------------------- /src/www/ui/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/select2.min.css -------------------------------------------------------------------------------- /src/www/ui/css/showjobs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/showjobs.css -------------------------------------------------------------------------------- /src/www/ui/css/spasht.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/css/spasht.css -------------------------------------------------------------------------------- /src/www/ui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/favicon.ico -------------------------------------------------------------------------------- /src/www/ui/group-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/group-add.php -------------------------------------------------------------------------------- /src/www/ui/i18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/i18n.php -------------------------------------------------------------------------------- /src/www/ui/images/eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/eyes.png -------------------------------------------------------------------------------- /src/www/ui/images/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/green.png -------------------------------------------------------------------------------- /src/www/ui/images/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/grey.png -------------------------------------------------------------------------------- /src/www/ui/images/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/icons/README -------------------------------------------------------------------------------- /src/www/ui/images/info_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/info_16.png -------------------------------------------------------------------------------- /src/www/ui/images/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/logo2.png -------------------------------------------------------------------------------- /src/www/ui/images/pig.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/pig.gif -------------------------------------------------------------------------------- /src/www/ui/images/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/red.png -------------------------------------------------------------------------------- /src/www/ui/images/redGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/redGreen.png -------------------------------------------------------------------------------- /src/www/ui/images/space_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/space_16.png -------------------------------------------------------------------------------- /src/www/ui/images/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/white.png -------------------------------------------------------------------------------- /src/www/ui/images/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/images/yellow.png -------------------------------------------------------------------------------- /src/www/ui/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/index.php -------------------------------------------------------------------------------- /src/www/ui/page/AboutPage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/page/AboutPage.php -------------------------------------------------------------------------------- /src/www/ui/page/AllJobStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/page/AllJobStatus.php -------------------------------------------------------------------------------- /src/www/ui/page/HomePage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/page/HomePage.php -------------------------------------------------------------------------------- /src/www/ui/popup-license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/popup-license.php -------------------------------------------------------------------------------- /src/www/ui/scripts/browse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/browse.js -------------------------------------------------------------------------------- /src/www/ui/scripts/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/jquery-ui.js -------------------------------------------------------------------------------- /src/www/ui/scripts/legend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/legend.js -------------------------------------------------------------------------------- /src/www/ui/scripts/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/license.js -------------------------------------------------------------------------------- /src/www/ui/scripts/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/popper.min.js -------------------------------------------------------------------------------- /src/www/ui/scripts/supervised.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/supervised.js -------------------------------------------------------------------------------- /src/www/ui/scripts/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/tools.js -------------------------------------------------------------------------------- /src/www/ui/scripts/user-edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/scripts/user-edit.js -------------------------------------------------------------------------------- /src/www/ui/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/search.php -------------------------------------------------------------------------------- /src/www/ui/showjobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/showjobs.php -------------------------------------------------------------------------------- /src/www/ui/ui-browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-browse.php -------------------------------------------------------------------------------- /src/www/ui/ui-clearing-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-clearing-view.php -------------------------------------------------------------------------------- /src/www/ui/ui-download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-download.php -------------------------------------------------------------------------------- /src/www/ui/ui-export-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-export-list.php -------------------------------------------------------------------------------- /src/www/ui/ui-file-browse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-file-browse.php -------------------------------------------------------------------------------- /src/www/ui/ui-picker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-picker.php -------------------------------------------------------------------------------- /src/www/ui/ui-refresh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-refresh.php -------------------------------------------------------------------------------- /src/www/ui/ui-report-conf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-report-conf.php -------------------------------------------------------------------------------- /src/www/ui/ui-tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-tags.php -------------------------------------------------------------------------------- /src/www/ui/ui-topnav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-topnav.php -------------------------------------------------------------------------------- /src/www/ui/ui-treenav.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-treenav.php -------------------------------------------------------------------------------- /src/www/ui/ui-view-info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-view-info.php -------------------------------------------------------------------------------- /src/www/ui/ui-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/ui-view.php -------------------------------------------------------------------------------- /src/www/ui/user-add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/user-add.php -------------------------------------------------------------------------------- /src/www/ui/user-del-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/user-del-helper.php -------------------------------------------------------------------------------- /src/www/ui/user-del.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/user-del.php -------------------------------------------------------------------------------- /src/www/ui/user-edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/user-edit.php -------------------------------------------------------------------------------- /src/www/ui/xhtml1-frameset.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui/xhtml1-frameset.dtd -------------------------------------------------------------------------------- /src/www/ui_tests/Tweb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui_tests/Tweb.php -------------------------------------------------------------------------------- /src/www/ui_tests/api/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui_tests/api/tests.xml -------------------------------------------------------------------------------- /src/www/ui_tests/foss_ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui_tests/foss_ui.php -------------------------------------------------------------------------------- /src/www/ui_tests/runDummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui_tests/runDummy.php -------------------------------------------------------------------------------- /src/www/ui_tests/startUpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/src/www/ui_tests/startUpTest.php -------------------------------------------------------------------------------- /utils/FossschemaSpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/FossschemaSpy -------------------------------------------------------------------------------- /utils/OSADL_CONVERTOR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/OSADL_CONVERTOR.md -------------------------------------------------------------------------------- /utils/automation/Dockerfile.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/automation/Dockerfile.ci -------------------------------------------------------------------------------- /utils/backup/S3/after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/S3/after -------------------------------------------------------------------------------- /utils/backup/S3/before: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/S3/before -------------------------------------------------------------------------------- /utils/backup/S3/fo-backup-s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/S3/fo-backup-s3 -------------------------------------------------------------------------------- /utils/backup/S3/fo-restore-s3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/S3/fo-restore-s3 -------------------------------------------------------------------------------- /utils/backup/S3/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/S3/install -------------------------------------------------------------------------------- /utils/backup/backup_include_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/backup_include_a -------------------------------------------------------------------------------- /utils/backup/backup_include_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/backup_include_b -------------------------------------------------------------------------------- /utils/backup/fo-backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/fo-backup -------------------------------------------------------------------------------- /utils/backup/fo-restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/fo-restore -------------------------------------------------------------------------------- /utils/backup/fo-restore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/backup/fo-restore.php -------------------------------------------------------------------------------- /utils/deploy-pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/deploy-pages.sh -------------------------------------------------------------------------------- /utils/fedora/clean-tars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fedora/clean-tars.php -------------------------------------------------------------------------------- /utils/fedora/get-fsrc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fedora/get-fsrc.php -------------------------------------------------------------------------------- /utils/fedora/tarup-fedora.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fedora/tarup-fedora.pl -------------------------------------------------------------------------------- /utils/fo-cleanold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fo-cleanold -------------------------------------------------------------------------------- /utils/fo-debuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fo-debuild -------------------------------------------------------------------------------- /utils/fo-installdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fo-installdeps -------------------------------------------------------------------------------- /utils/fo-mktar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fo-mktar -------------------------------------------------------------------------------- /utils/fo_merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fo_merge -------------------------------------------------------------------------------- /utils/fofind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fofind -------------------------------------------------------------------------------- /utils/fofindname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fofindname -------------------------------------------------------------------------------- /utils/fofindui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/fofindui -------------------------------------------------------------------------------- /utils/freshmeat/Design-Notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/Design-Notes -------------------------------------------------------------------------------- /utils/freshmeat/GetFM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/GetFM -------------------------------------------------------------------------------- /utils/freshmeat/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/ReadMe -------------------------------------------------------------------------------- /utils/freshmeat/diffm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/diffm.php -------------------------------------------------------------------------------- /utils/freshmeat/diffm.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/diffm.pod -------------------------------------------------------------------------------- /utils/freshmeat/fm.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/fm.cron -------------------------------------------------------------------------------- /utils/freshmeat/get-projects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/get-projects.php -------------------------------------------------------------------------------- /utils/freshmeat/get-projects.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/get-projects.pod -------------------------------------------------------------------------------- /utils/freshmeat/mk_fmdirs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/mk_fmdirs.php -------------------------------------------------------------------------------- /utils/freshmeat/mktop1k.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/mktop1k.php -------------------------------------------------------------------------------- /utils/freshmeat/mktop1k.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/mktop1k.pod -------------------------------------------------------------------------------- /utils/freshmeat/tests/runGp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/tests/runGp.php -------------------------------------------------------------------------------- /utils/freshmeat/tests/tfmrdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/tests/tfmrdf.php -------------------------------------------------------------------------------- /utils/freshmeat/tests/tgetfm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/tests/tgetfm.php -------------------------------------------------------------------------------- /utils/freshmeat/trac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/trac.php -------------------------------------------------------------------------------- /utils/freshmeat/wrapGFM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/freshmeat/wrapGFM -------------------------------------------------------------------------------- /utils/gitpod-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/gitpod-install.sh -------------------------------------------------------------------------------- /utils/install_composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/install_composer.sh -------------------------------------------------------------------------------- /utils/installagents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/installagents -------------------------------------------------------------------------------- /utils/list_license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/list_license.php -------------------------------------------------------------------------------- /utils/mkfilelists: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/mkfilelists -------------------------------------------------------------------------------- /utils/mkpod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/mkpod -------------------------------------------------------------------------------- /utils/osadl_convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/osadl_convertor.py -------------------------------------------------------------------------------- /utils/parse_license.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/parse_license.php -------------------------------------------------------------------------------- /utils/prepare-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/prepare-test -------------------------------------------------------------------------------- /utils/prepare-vagrant-dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/prepare-vagrant-dev.sh -------------------------------------------------------------------------------- /utils/preprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/preprocess -------------------------------------------------------------------------------- /utils/preprocess_php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/preprocess_php -------------------------------------------------------------------------------- /utils/repo-range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/repo-range -------------------------------------------------------------------------------- /utils/requirements.osadl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/requirements.osadl.txt -------------------------------------------------------------------------------- /utils/runBuild_v2.0.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/runBuild_v2.0.php -------------------------------------------------------------------------------- /utils/schemaspy.run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/schemaspy.run -------------------------------------------------------------------------------- /utils/template.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/template.pod -------------------------------------------------------------------------------- /utils/unique.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/unique.php -------------------------------------------------------------------------------- /utils/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siemens/fossology/HEAD/utils/utils.sh --------------------------------------------------------------------------------