summary refs log tree commit diff
path: root/src/librustdoc/html/format.rs
AgeCommit message (Collapse)AuthorLines
2013-09-25rustdoc: Linkify all reexports.Alex Crichton-23/+109
This way each component of a reexport path is click-able to the destination that it's referencing.
2013-09-25rustdoc: Implement stripping based on privacyAlex Crichton-0/+1
This will probably need to get tweaked once the privacy rules have been fully agreed on, but for now this has all of the infrastructure necessary for filtering out private items. Closes #9410
2013-09-25rustdoc: Emit purity to function dox for traitsAlex Crichton-10/+13
Closes #3804
2013-09-22rustdoc: Out with the old, in with the newAlex Crichton-0/+364
Removes old rustdoc, moves rustdoc_ng into its place instead (plus drops the _ng suffix). Also shreds all reference to rustdoc_ng from the Makefile rules.