-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mkdocs: Fix file not found warnings #926
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - Thanks @bact
Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
We switched over to using the GitHub release notes on version 2.3 and later. This adds references to the GitHub release notes in the CHANGELOG.md Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
The check assumes that JSON example snippets are all parts of a single JSON document that needs validating, but not all files are written that way. To avoid errors that have nothing to do with the correctness of the examples, we should only check files which meet the check's assumptions. Fixes spdx#912. Signed-off-by: Jeff Licquia <jeff@licquia.org> Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
851b96b
to
a57c094
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for tracking this down and explaining. LGTM.
@bact - can you resolve the merge conflicts - thanks |
I cannot see any changes from the last commit but GitHub still say that there're conflicts. So trying to change minor things. (note the newline break between lines 7 and 8) Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
A rework of spdx#926 to fix unresolvable merge conflicts Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
@goneall @kestewart I have tried to resolve the merge conflicts but I cannot see any changes from the development/v3.0.1 branch that will cause the conflict. The bact:fix-file-not-found-warnings branch is basically ahead of the development/v3.0.1 branch without any behind commits. I opened a new PR #955 and copied the changes from this PR over. If you can re-review in that PR. I can close this PR if agreed. Sorry for inconvenience. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
A rework of #926 to fix unresolvable merge conflicts Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
Close - merged in #955 |
A rework of spdx#926 to fix unresolvable merge conflicts Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com>
A rework of spdx#926 to fix unresolvable merge conflicts Signed-off-by: Arthit Suriyawongkul <arthit@gmail.com> Signed-off-by: Marc-Etienne Vargenau <marc-etienne.vargenau@nokia.com>
Fix file not found issues in spec doc generation.
Currently,
mkdocs serve
andmkdocs build
emit these warnings:The first 4 warnings are responsible to the four erroneous
None
class/properties displaying in the left pane of https://spdx.github.io/spdx-spec/v3.0/ . They are all old property names. New property names are already included in the nav. Fixed by removing all 4 outdated references:model/Software/Properties/isDirectory.md
is nowfileKind
model/Dataset/Classes/Dataset.md
is nowDatasetPackage
model/Dataset/Properties/sensitivePersonalInformation.md
is nowhasSensitivePersonalInformation
model/AI/Properties/sensitivePersonalInformation.md
is nowuseSensitivePersonalInformation
The remaining 2 warnings are fixed by add directory name to the targets:
diffs-from-previous-editions.md
andSPDX-Lite.md
are inannexes/
directory