aboutsummaryrefslogtreecommitdiff
path: root/brokenlinks/testdata/web
AgeCommit message (Collapse)Author
2026-02-11brokenlinks: test links that wrapped by other elementsShulhan
This is to see the behaviour of [Node.Descendants] when traversing the element recursively.
2026-02-04brokenlinks: skip parsing non-HTML pageShulhan
If the response Content-type return other than "text/html", skip parsing the content and return immediately.
2025-11-20brokenlinks: fix infinite loop on unknown hostShulhan
On link with invalid domain, it should break and return the error immediately.
2025-06-27brokenlinks: implement caching for external URLsShulhan
Any succesful fetch on external URLs, will be recorded into jarink cache file, located in user's home cache directory. For example, in Linux it would be `$HOME/.cache/jarink/cache.json`. This help improve the future rescanning on the same or different target URL, minimizing network requests.
2025-06-16brokenlinks: add option "insecure"Shulhan
The insecure option will allow and not report as error on server with invalid certificates.
2025-06-13brokenlinks: add option to ignore list HTTP status codeShulhan
When link known to have an issues, one can ignore the status code during scanning broken links using "-ignore-status" option.
2025-06-12all: add SPDX license to testdata filesShulhan
2025-06-12all: refactoring, move brokenlinks code to its own packageShulhan
When two or more struct has the same prefix that means it is time to move it to group it. Also, we will group one command to one package in the future.