Add CC BY 4.0 attribution for Red Hat-sourced advisory content#4
Open
rockythorn wants to merge 1 commit into
Open
Add CC BY 4.0 attribution for Red Hat-sourced advisory content#4rockythorn wants to merge 1 commit into
rockythorn wants to merge 1 commit into
Conversation
Advisory text shown on the errata site is re-published from Red Hat advisories licensed under CC BY 4.0, which requires attribution, a link to the source and the license, and an indication that changes were made. The site showed none of these. Add a per-advisory attribution line on the advisory page and a site-wide footer notice, and extend the V2Advisory type with the source object the API now returns.
jdieter
approved these changes
Jun 16, 2026
jdieter
left a comment
There was a problem hiding this comment.
IANAL, but this looks like it meets our requirements under the CC BY 4.0 license.
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.
Problem
The errata site (errata.rockylinux.org) re-publishes Red Hat advisory text
(synopsis, description, topic), which Red Hat licenses under
CC BY 4.0. That license requires
crediting the source, linking to the original advisory and to the license, and
indicating that changes were made. The site currently shows none of these.
Approach
ShowErrata.tsx),under the synopsis: links to the source Red Hat advisory and the CC BY 4.0
license, noting that the content was modified.
Root.tsx) carrying the same attribution.V2Advisorytype with thesourceobject the API now returns.Testing
tsc --noEmitand a fullvite buildpass.sourceobject and the page renders the attribution from it.Notes
sourcefield to the v2 advisory API. The attribution renders only when that field is
present and degrades gracefully otherwise.