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
The old documentation was created using hugo, after the migration to contentlayer multiple links no longer point to the right resource, I tried to collect as many and list them, some have been previously mentioned in the issue tracker.
To figure out where the url is referenced in the files, git grep is useful , for example :
git grep -n 'docs/contributing/coding-conventions#definitions'
content/docs/contributing/coding-conventions.mdx:748:This is referenced in [the definitions](docs/contributing/coding-conventions#definitions) section for prefixes (i.e. the use of `uk_`, `ukplat_`, `ukarch_` prefixes).
It would be nice to integrate a URL checking tool into the development workflow e.i:
Add an entry in the contributing docs detailing how to run a url checker on the changes made as part of the pull requests process
Integrate a url checker tool, as a pre-commit hook , it would be nice if we can determine which pages are affected from a commit diff and run the checker on those page's only, this would allow for faster run times
some url checker tools already provide github action definitions, for example lychee which support's markdown directly.
The text was updated successfully, but these errors were encountered:
These exist original in the old tree, they are mostly written with the old version of kraft in mind. Thus if they are to be imported they should be rewritten.
There is an existing issue tracking the support of different hypervisors in kraftkit.
For static media, they mostly exist withing the repo, under the static/assets/ folder, but the current static content is served from public/ instead, we can either cp the files to the public/ folder or configure the server to serve content from the old static folder as well.
Example:
For this page images are under /static/assets/imgs/ but not loaded
same for file assets /assets/files/eurosys2021-slides.pdf
Overview
The old documentation was created using
hugo
, after the migration tocontentlayer
multiple links no longer point to the right resource, I tried to collect as many and list them, some have been previously mentioned in the issue tracker.related: #360 #372 #370 #384 #363 #341 #189 #188
The table below was generated by running the
linkchecker
toolThe csv output was further converted to a markdown format
URL List
Getting the context of where a link is used
To figure out where the url is referenced in the files,
git grep
is useful , for example :Converting the csv output to markdown table
The following python script was used
convert.py
Further notes
diff
and run the checker on those page's only, this would allow for faster run timesThe text was updated successfully, but these errors were encountered: