summary refs log tree commit diff
path: root/src/librustdoc/html/static
AgeCommit message (Collapse)AuthorLines
2013-12-07rustdoc: fix the search-bar layoutAdrien Tétar-1/+5
Now with broader compatibility.
2013-11-13doc: disable parser error highlighting + a few fixesAdrien Tétar-0/+1
CodeMirror parser errors are related to #9873.
2013-11-12doc: CSS: fix code fontsAdrien Tétar-1/+7
Closes #10330.
2013-10-22auto merge of #10003 : alexcrichton/rust/issue-fixes, r=brsonbors-0/+7
Commits have all the fun details.
2013-10-21rustdoc: Don't overflow long type/module namesAlex Crichton-0/+7
Closes #9862
2013-10-21rustdoc: nitpicks & cleanupAdrien Tétar-425/+19
2013-10-02Prevent source view from wrapping linesJordi Boggiano-1/+5
2013-10-02Highlight line numbers of the lines referred to in the url hashJordi Boggiano-0/+22
2013-09-30rustdoc: Detect repeated keys and fix widthAlex Crichton-4/+4
When a key is pressed and held, this now does the OS-style repeating after a bit of a pause. Also fixes the width of search results to be correct (was changed beforehand and didn't catch this).
2013-09-27rustdoc: Include source files with documentationAlex Crichton-0/+3
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-6/+18
2013-09-27rustdoc: Don't emit redirect pages for variants/fieldsAlex Crichton-7/+34
It's just a waste of disk space and it can be done just as well in JS.
2013-09-26rustdoc: Render stability attributesAlex Crichton-0/+15
Closes #8965
2013-09-25rustdoc: Highlight function namesAlex Crichton-0/+1
Closes #9460
2013-09-22rustdoc: Out with the old, in with the newAlex Crichton-0/+1092
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.