summary refs log tree commit diff
path: root/src/tools/linkchecker
AgeCommit message (Collapse)AuthorLines
2017-01-20linkchecker: Fix checking links which are just fragmentsOliver Middleton-11/+10
Also fix a typo which linkchecker should have caught.
2016-11-08rustbuild: Tweak for vendored dependenciesAlex Crichton-38/+29
A few changes are included here: * The `winapi` and `url` dependencies were dropped. The source code for these projects is pretty weighty, and we're about to vendor them, so let's not commit to that intake just yet. If necessary we can vendor them later but for now it shouldn't be necessary. * The `--frozen` flag is now always passed to Cargo, obviating the need for tidy's `cargo_lock` check. * Tidy was updated to not check the vendor directory Closes #34687
2016-10-12Stabilise `?`Nick Cameron-2/+0
cc [`?` tracking issue](https://github.com/rust-lang/rust/issues/31436)
2016-10-07Use workspaces and switch to a single Cargo.lock.Ahmed Charles-50/+0
This involves hacking the code used to run cargo test on various packages, because it reads Cargo.lock to determine which packages should be tested. This change implements a blacklist, since that will catch new crates when they are added in the future.
2016-09-11Use question_mark feature in linkchecker.Ahmed Charles-4/+5
2016-08-18Fix linksNick Cameron-0/+6
2016-08-12Upgrade linkchecker to url 1.2.0.Ahmed Charles-45/+20
2016-06-29Reject invalid urls in linkcheckerOliver Middleton-23/+20
For example root-relative links will now be rejected. Also remove some exceptions which have since been fixed and fix a typo in the broken redirect handling.
2016-06-11run rustfmt on linkchecker folderin src/tools/linkcheckerSrinivas Reddy Thatiparthy-37/+30
2016-06-02linkchecker: Treat directory links as errorsOliver Middleton-0/+6
Directory links don't work well offline so they should be treated as errors.
2016-05-05Fix some some duplicate words.Georg Brandl-1/+1
2016-03-28Add FIXME for linkchecker whitlistsmitaa-2/+5
2016-03-28Don't check(=cache) redirect pagesmitaa-12/+19
Checking a redirect page during tree traversal before trying to actually follow the redirect leads to retrieval of the redirect pages source instead.
2016-03-27Drop cached sources to reduce memory usagemitaa-23/+43
2016-03-27Extend linkchecker with anchor checkingmitaa-42/+196
This adds checks to ensure that: * link anchors refer to existing id's on the target page * id's are unique within an html document * page redirects are valid
2016-03-14linkchecker: Fix path checks on WindowsAlex Crichton-18/+17
2016-03-08rustbuild: Add a link checker for documentationAlex Crichton-0/+236
Add a script to get run which verifies that `href` links in documents are correct. We're always getting a steady stream of "fix a broken link" PRs and issue reports, and we should probably just nip them all in the bud.