Conversation
Member
|
I don't think we need put license info into LICENSE file. |
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1113
Summary
The website frontend bundles two GitHub brand mark SVGs
(
website/src/pages/team/github.svgandwebsite/static/img/github_icon.svg)derived from GitHub's brand mark, which is not under the Apache License and
was not declared in LICENSE/NOTICE.
Following option (a) from the issue, this PR replaces them with the
ASF-compatible GitHub mark from Simple Icons, which is dedicated to the
public domain under CC0 1.0 Universal (ASF Category-A compatible), and
declares the assets in
LICENSEwith the full license text.Changes
website/src/pages/team/github.svg— replace the iconfont GitHub glyph withthe Simple Icons GitHub mark (
fill="currentColor", matching the existing.team-link .github-icon { color: #fff }style); remove the misapplied ASFheader and add the CC0 attribution.
website/static/img/github_icon.svg— the path data was already the SimpleIcons mark; remove the misapplied ASF header, add the CC0 attribution, and
keep the existing
fill="black"rendering unchanged.LICENSE— add a "Simple Icons" third-party entry with the full CC0 1.0Universal legal text.
Licensing
Simple Icons is licensed under CC0 1.0 Universal
(https://creativecommons.org/publicdomain/zero/1.0/). The icons are declared
in
LICENSEwith the exact license text, satisfying the IPMC follow-up.Verification
website/assets andLICENSE; CI ignoreswebsite/**and no release artifacts are affected.