License Reference


{% for group in abouts | groupby('license_expression') %}

{{ group.grouper }}

{% endfor %}

{% for group in abouts | groupby('license_expression') %}

{{ group.grouper }}

This product contains the following open source software packages licensed under the terms of the license: {{group.grouper}}

{% set glob={} %} {%for about_object in group.list %} {% if loop.first %} {% if about_object.license_url %}

License Gallery URL: {{about_object.license_url }}

{% endif %} {% endif %} {% set name_version = about_object.name + about_object.version %} {% if glob[name_version] %} {# PASS #} {% else %}
  • {{ about_object.name }}{% if about_object.version %} - Version {{ about_object.version }}{% endif %}
  • {% if about_object.copyright %}
    {{about_object.copyright}}
    {% endif %} {% if about_object.notice %}
    {{ about_object.notice }}
    {% elif about_object.notice_file %}
    {{ about_object.notice_text }}
    {% endif %} {% set about_dict = glob.update({name_version: True}) %} {% endif %} {% if loop.last %} {% for key in about_object.license_key %}
    {{ license_dict[key].license_text|e }}
    {% if license_dict[key].homepage_url %}
    ({{ license_dict[key].homepage_url|e }})
    {% endif %} {% endfor %} {% endif %}
    {% endfor %}
    {% endfor %}

    End