You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<p>This component is licensed under {{ about_object.license_expression.value }}</p>
38
+
{% endif %}
39
+
{% if about_object.copyright.value %}
40
+
<pre>
41
+
{{about_object.copyright.value}}
42
+
</pre>
43
+
{% endif %}
44
+
{% if about_object.notice_file.value %}
45
+
{% for notice in about_object.notice_file.value %}
46
+
<pre class="component-notice">
47
+
{{ about_object.notice_file.value[notice] }}
42
48
</pre>
43
-
{% endif %}
44
-
{% if about_object.notice_file.value %}
45
-
{% for notice in about_object.notice_file.value %}
46
-
<pre class="component-notice">
47
-
{{ about_object.notice_file.value[notice] }}
48
-
</pre>
49
+
{% endfor %}
50
+
{% endif %}
51
+
{% if about_object.license_key.value %}
52
+
{% if about_object.license_file.value %}
53
+
{% for lic_file_name in about_object.license_file.value %}
54
+
{% for license in licenses_list %}
55
+
{% if license.filename == lic_file_name %}
56
+
{% if not license.key in common_licenses %}
57
+
<pre> {{ license.text | e}} </pre>
58
+
{% endif %}
59
+
{% endif %}
60
+
{% endfor %}
49
61
{% endfor %}
50
-
{% endif %}
51
-
{% if about_object.license_key.value %}
62
+
{% else %}
52
63
{% for license_key in about_object.license_key.value %}
53
64
{% if license_key in common_licenses %}
54
65
<p>Full text of <a class="{{ license_key }}" href="#component-license-{{ license_key }}"> {{ license_key }}</a> is available at the end of this document.</p>
55
-
{% endif %}
56
-
{% endfor %}
57
-
{% if about_object.license_file.value %}
58
-
{% for lic_file_name in about_object.license_file.value %}
0 commit comments