about summary refs log tree commit diff
path: root/src/librustdoc/html/layout.rs
AgeCommit message (Collapse)AuthorLines
2019-10-27reduce size of generated HTML files by moving the popup helper code to the JSGuillaume Gomez-55/+0
2019-10-26Add more information on searchGuillaume Gomez-0/+8
2019-09-13Replace SlashChecker with ensure_trailing_slashMark Rousskov-2/+2
2019-09-07layout::render takes Print instead of fmt::DisplayMark Rousskov-4/+3
2019-09-07Implement Print for FnOnce(&mut Buffer)Mark Rousskov-1/+1
This means that callers can pass in a closure like `|buf| some_function(..., &mut buf)` and pass in arbitrary arguments to that function without complicating the trait definition. We also keep the impl for str and String, since it's useful to be able to just pass in "" or format!("{}"...) results in some cases. This changes Print's definition to take self, instead of &self, because otherwise FnOnce cannot be called directly. We could instead take FnMut or even Fn, but that seems like it'd merely complicate matters -- most of the time, the FnOnce does not constrain us at all anyway. If it does, a custom Print impl for &'_ SomeStruct is not all that painful.
2019-09-07Move sidebar to Buffer-printingMark Rousskov-2/+3
2019-09-07Remove unnecessary Buffer in layout::renderMark Rousskov-6/+2
2019-09-07Move constant parameters to render to Layout structMark Rousskov-4/+8
2019-09-07Create buffers in top-level renderingMark Rousskov-5/+6
This avoids needlessly creating and threading the buffers through when we only use them once.
2019-09-07Migrate top-level rendering to BufferMark Rousskov-4/+4
2019-04-29Fix image position and displayGuillaume Gomez-4/+2
2019-04-29Wrap logo in container to prevent layout reflowJakob Ståhl-2/+4
2019-04-29Revert "Explicitly set height on rust logo <img> element in docs"Jakob Ståhl-2/+2
This reverts commit d79a01b72f4722611cb21b719e6243aad3e7ec3c.
2019-04-29Explicitly set height on rust logo <img> element in docsJakob Ståhl-2/+2
The layout of the left side menu in docs reflows when navigating between pages because of missing height on the <img> element of rust logo. Setting height='100' tells the browser to reserve that vertical space, leading to a less janky experience.
2019-04-12Apply resource-suffix to search-index and source-files scripts as wellGuillaume Gomez-2/+2
2019-02-23Transition librustdoc to 2018 editionHirokazu Hata-4/+3
2019-02-01Fix image link in the settings menuGuillaume Gomez-10/+18
2019-01-20Add default favicon for documentationGuillaume Gomez-1/+3
2019-01-20Add default rust logo for documentationGuillaume Gomez-1/+4
2018-12-29Auto merge of #57006 - GuillaumeGomez:no-crate-filter, r=QuietMisdreavusbors-8/+17
Add no-crate filter option on rustdoc @onur asked me about it so here it is! r? @QuietMisdreavus
2018-12-25Remove licensesMark Rousskov-10/+0
2018-12-24Add no-crate filter option on rustdocGuillaume Gomez-8/+17
2018-12-20split extra_scripts to handle root_path shenanigansQuietMisdreavus-4/+10
2018-12-20new --static-root-path flag for controlling static file locationsQuietMisdreavus-14/+25
2018-12-15Auto merge of #56005 - GuillaumeGomez:speedup-doc-render, r=QuietMisdreavusbors-0/+1
Greatly improve rustdoc rendering speed issues Fixes #55900. So a few improvements here: * we're switching to `DOMTokenList` API when available providing a replacement if it isn't (should only happen on safari and IE I think...) * hide doc sections by default to allow the whole HTML generation to happen in the background to avoid triggering DOM redraw all the times (which killed the performances) r? @QuietMisdreavus
2018-12-07Various minor/cosmetic improvements to codeAlexander Regueiro-3/+3
2018-12-06Show everything when noscript is onGuillaume Gomez-0/+1
2018-12-06Rollup merge of #56332 - GuillaumeGomez:specifi-crate-search, r=QuietMisdreavusPietro Albini-5/+13
[rustdoc] Specific crate search Reopening of #54706. Fixes #54616. <img width="1440" alt="screenshot 2018-11-29 at 01 29 11" src="https://user-images.githubusercontent.com/3050060/49191372-979adf80-f376-11e8-963e-e4feb927c1da.png"> r? @QuietMisdreavus
2018-12-03Don't generate suffix for source-file.jsGuillaume Gomez-3/+2
2018-11-29Add arrow to the crate select boxGuillaume Gomez-0/+3
2018-11-28Add crate filteringGuillaume Gomez-5/+10
2018-11-24Source sidebar improvementsGuillaume Gomez-2/+3
2018-11-24Add source file sidebarGuillaume Gomez-1/+7
2018-10-17[librustdoc] Disable spellcheck for search fieldAlexander Komarov-0/+1
2018-08-23use String::new() instead of String::from(""), "".to_string(), "".to_owned() ↵Matthias Krüger-3/+3
or "".into()
2018-07-25Add missing dynTatsuyuki Ishi-2/+2
2018-04-27fix search load page failureGuillaume Gomez-1/+1
2018-04-22Auto merge of #49954 - GuillaumeGomez:doc-settings, r=ollie27,QuietMisdreavusbors-2/+6
Add rustdoc settings menu Fixes #18167. r? @QuietMisdreavus
2018-04-21Generate alias fileGuillaume Gomez-0/+1
2018-04-17Add rustdoc settings menuGuillaume Gomez-2/+6
2018-04-14Add docGuillaume Gomez-0/+4
2018-04-14Small size reductionGuillaume Gomez-122/+106
2018-03-29Rename main theme into light themeGuillaume Gomez-1/+1
2018-03-05Add resource-suffix option for rustdocGuillaume Gomez-11/+16
2018-01-24Few fixes for multiple themes support featureGuillaume Gomez-3/+5
2018-01-23Fasten even more theme switchGuillaume Gomez-2/+11
2018-01-22Fasten up theme loadingGuillaume Gomez-3/+4
2018-01-22Change theme iconGuillaume Gomez-1/+2
2018-01-21Add possibility to have multiple themesGuillaume Gomez-2/+6
2018-01-15extended dt with kbd tagsMarcel Hellwig-8/+10
removed styling of dt tages, which would make them look like keys and added <kbd> tag inside of dt tag. Added css style for kbd and removed some stylings for dt