summary refs log tree commit diff
path: root/src/librustdoc/html/layout.rs
AgeCommit message (Collapse)AuthorLines
2013-12-13auto merge of #10849 : adridu59/rust/patch-css, r=alexcrichtonbors-4/+6
rustdoc: - fix search-bar layout doc: CSS: - switch to native pandoc toc depth - rm some dead code - clamp width to be readable (we're not Wikipedia!) - don't background-color titles, it's bloating - make syntax-highlighting colors inline with rust-lang.org - space indents @alexcrichton
2013-12-11Make 'self lifetime illegal.Erik Price-4/+4
Also remove all instances of 'self within the codebase. This fixes #10889.
2013-12-08Remove dead codesKiet Tran-4/+0
2013-12-07rustdoc: fix the search-bar layoutAdrien Tétar-4/+6
Now with broader compatibility.
2013-12-01Add a type="search" to the search bar in the documentation.SiegeLord-1/+2
2013-12-01Add placeholder text to the search bar in the documentation.SiegeLord-1/+2
2013-11-11Move std::rt::io to std::ioAlex Crichton-1/+1
2013-10-21rustdoc: nitpicks & cleanupAdrien Tétar-6/+4
2013-09-27rustdoc: Include source files with documentationAlex Crichton-1/+1
All items have source links back to their actual code. Source files can be omitted with the doc(html_no_source) attribute on the crate. Currently there is no syntax highlighting, but that will come with syntax highlighting with all other snippets. Closes #2072
2013-09-27rustdoc: Fix search for something on the same pageAlex Crichton-1/+2
2013-09-22Place *all* rustdoc output in doc/{crate}Alex Crichton-4/+4
2013-09-22rustdoc: Out with the old, in with the newAlex Crichton-0/+130
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.