summary refs log tree commit diff
path: root/src/etc/htmldocck.py
AgeCommit message (Collapse)AuthorLines
2015-04-07rustdoc: Add a primitive page for raw pointersAlex Crichton-1/+2
Closes #15318
2015-02-27Add a way to assert the number of occurrences to htmldocckSeo Sanghyeon-0/+15
2015-01-27Fix PEP8 for htmldocckRicho Healey-15/+45
2015-01-18tests: Warn on the trailing backslash in the template.Kang Seonghoon-0/+3
2015-01-18tests: Tidy and allows multi-line htmldocck commands.Kang Seonghoon-3/+35
2015-01-18tests: Add htmldocck.py script for the use of Rustdoc tests.Kang Seonghoon-0/+316
The script is intended as a tool for doing every sort of verifications amenable to Rustdoc's HTML output. For example, link checkers would go to this script. It already parses HTML into a document tree form (with a slight caveat), so future tests can make use of it. As an example, relevant `rustdoc-*` run-make tests have been updated to use `htmldocck.py` and got their `verify.sh` removed. In the future they may go to a dedicated directory with htmldocck running by default. The detailed explanation of test scripts is provided as a docstring of htmldocck. cc #19723