{% extends "layout.html" %} {% comment %} Copyright (C) 2019-2023 The Software Heritage developers See the AUTHORS file at the top-level directory of this distribution License: GNU Affero General Public License version 3, or any later version See top-level LICENSE file for more information {% endcomment %} {% load swh_templatetags %} {% block page_title %} JavaScript license information {% endblock page_title %} {% block navbar-content %}

JavaScript license information

{% endblock navbar-content %} {% block content %}

This page states the licenses of all the JavaScript files that might be loaded by that web application. The loaded JavaScript files can correspond to bundles concatenating multiple source files. You can find the details of the content of each bundle in the Web Labels table below.

{% for jsasset, bundled_js_srcs in jslicenses_data %} {% endfor %}
Script Licenses Sources
{% if jsasset|split:"/"|last %} {{ jsasset | split:"/" | last }} {% else %} {{ jsasset }} {% endif %} {% for js_src in bundled_js_srcs %} {% for js_license in js_src.licenses %} {{ js_license.name }} {% if js_license.copy_url %}(view){% endif %} {% if not forloop.last %}
{% endif %} {% endfor %} {% if not forloop.last %}

{% endif %} {% endfor %}
{% for js_src in bundled_js_srcs %} {{ js_src.id }} {% for js_license in js_src.licenses %} {% if not forloop.last %}
{% endif %} {% endfor %} {% if not forloop.last %}

{% endif %} {% endfor %}
{% endblock content %}