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
When checking http://domain/library/\* then all links to http://domain/somethingelse are seen as external and ignored. However, this causes a specific error case not to be seen: url_for links that have a non-existing destination.
Linkchecker offers --check-extern (to proceed to "external" links), and with either --ignore-url REGEX or --no-follow-url REGEX we should be able to keep it to the same domain.
It's probably a good idea to start checking external links (without following) as well.
When checking http://domain/library/\* then all links to http://domain/somethingelse are seen as external and ignored. However, this causes a specific error case not to be seen: url_for links that have a non-existing destination.
For example:
url_for('/install/valid.html') ==> http://domain/library/install/valid.html
url_for('/install/invalid.html') ==> http://domain/install/invalid.html <-- not reported
The text was updated successfully, but these errors were encountered: