| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-12-20 | Fix sidebar on ios | Guillaume Gomez | -10/+50 | |
| 2017-12-18 | Rollup merge of #46825 - GuillaumeGomez:mobile-search, r=QuietMisdreavus | Guillaume Gomez | -0/+20 | |
| Improve search display on mobile r? @QuietMisdreavus | ||||
| 2017-12-18 | Rollup merge of #46824 - GuillaumeGomez:doc-sidebar, r=QuietMisdreavus | Guillaume Gomez | -1/+1 | |
| Fix dynamic crates listing in doc sidebar Fixes #46687. r? @QuietMisdreavus | ||||
| 2017-12-18 | Improve search display on mobile | Guillaume Gomez | -0/+20 | |
| 2017-12-18 | Fix dynamic crates listing in doc sidebar | Guillaume Gomez | -1/+1 | |
| 2017-12-15 | Improve results a bit | Guillaume Gomez | -2/+6 | |
| 2017-12-15 | make doc search more relevant | Guillaume Gomez | -12/+7 | |
| 2017-12-13 | Rollup merge of #46672 - GuillaumeGomez:fix-type-filter-search, ↵ | kennytm | -4/+4 | |
| r=QuietMisdreavus Fix type filter in rustdoc js Fixes #46612. r? @QuietMisdreavus | ||||
| 2017-12-12 | Fix type filter in rustdoc js | Guillaume Gomez | -4/+4 | |
| 2017-12-11 | Fix mobile doc style and improve search bar | Guillaume Gomez | -4/+27 | |
| 2017-12-09 | Auto merge of #46586 - GuillaumeGomez:fix-mobile-important-display, ↵ | bors | -1/+9 | |
| r=QuietMisdreavus Fixes doc important trait display on mobile Fixes #46527. r? @QuietMisdreavus | ||||
| 2017-12-08 | Fixes doc important trait display on mobile | Guillaume Gomez | -1/+9 | |
| 2017-12-07 | Rollup merge of #46526 - GuillaumeGomez:mobile-sidebar, r=QuietMisdreavus | Guillaume Gomez | -5/+68 | |
| Greatly improve sidebar when width < 700px Fixes #36531. r? @QuietMisdreavus A few screenshots: <img width="1440" alt="screen shot 2017-12-06 at 00 41 36" src="https://user-images.githubusercontent.com/3050060/33636875-6ad8b1a6-da1e-11e7-8d5b-d6d530ea5258.png"> <img width="1440" alt="screen shot 2017-12-06 at 00 41 40" src="https://user-images.githubusercontent.com/3050060/33636876-6af58196-da1e-11e7-82ab-b82768958037.png"> | ||||
| 2017-12-07 | Rollup merge of #46444 - GuillaumeGomez:css-cleanup, r=QuietMisdreavus | Guillaume Gomez | -33/+100 | |
| Move colors to main.css r? @QuietMisdreavus | ||||
| 2017-12-07 | Fix JS errors | Guillaume Gomez | -2/+8 | |
| 2017-12-07 | Greatly improve sidebar when width < 700px | Guillaume Gomez | -5/+62 | |
| 2017-12-07 | Auto merge of #46221 - GuillaumeGomez:doc-script-load-speedup, r=nrc | bors | -2/+9 | |
| Speedup search loading when search url is received Fixes #45971. r? @nrc cc @rust-lang/docs | ||||
| 2017-12-06 | Rollup merge of #46502 - GuillaumeGomez:improve-search-style, r=QuietMisdreavus | Corey Farwell | -1/+10 | |
| Improve search style Fixes #46494. r? @QuietMisdreavus | ||||
| 2017-12-06 | Auto merge of #45898 - JRegimbal:master, r=QuietMisdreavus | bors | -6/+6 | |
| Change "Types/modules" title of search tab to be more accurate From issue #45787. Used "In name" as per suggestion from @Seeker14491. | ||||
| 2017-12-05 | Changed tab names to those agreed upon. | JRegimbal | -6/+6 | |
| Tabs are "In Names", "In Parameters", and "In Return Types". | ||||
| 2017-12-04 | Improve search style | Guillaume Gomez | -1/+10 | |
| 2017-12-03 | Rollup merge of #46454 - GuillaumeGomez:search-overlap, r=QuietMisdreavus | Corey Farwell | -0/+1 | |
| Fix search results overlap Fixes #46434. r? @QuietMisdreavus | ||||
| 2017-12-03 | Auto merge of #46433 - GuillaumeGomez:dedup-items, r=QuietMisdreavus | bors | -3/+10 | |
| Fix deduplication of items Fixes #45968. r? @QuietMisdreavus | ||||
| 2017-12-02 | Fix search results overlap | Guillaume Gomez | -0/+1 | |
| 2017-12-02 | Move colors to main.css | Guillaume Gomez | -33/+100 | |
| 2017-12-01 | Fix deduplication of items | Guillaume Gomez | -3/+10 | |
| 2017-11-29 | Invert colors in important traits tooltip | Guillaume Gomez | -0/+6 | |
| 2017-11-26 | Fix global search | Guillaume Gomez | -227/+227 | |
| 2017-11-25 | Auto merge of #46081 - GuillaumeGomez:fix-path-search, r=QuietMisdreavus | bors | -82/+141 | |
| Fix path search Fixes #46015. r? @QuietMisdreavus | ||||
| 2017-11-23 | Speedup search loading when search url is received | Guillaume Gomez | -2/+9 | |
| 2017-11-21 | Auto merge of #45039 - QuietMisdreavus:doc-spotlight, ↵ | bors | -3/+134 | |
| r=GuillaumeGomez,QuietMisdreavus show in docs whether the return type of a function impls Iterator/Read/Write Closes #25928 This PR makes it so that when rustdoc documents a function, it checks the return type to see whether it implements a handful of specific traits. If so, it will print the impl and any associated types. Rather than doing this via a whitelist within rustdoc, i chose to do this by a new `#[doc]` attribute parameter, so things like `Future` could tap into this if desired. ### Known shortcomings ~~The printing of impls currently uses the `where` class over the whole thing to shrink the font size relative to the function definition itself. Naturally, when the impl has a where clause of its own, it gets shrunken even further:~~ (This is no longer a problem because the design changed and rendered this concern moot.) The lookup currently just looks at the top-level type, not looking inside things like Result or Option, which renders the spotlights on Read/Write a little less useful: <details><summary>`File::{open, create}` don't have spotlight info (pic of old design)</summary>  </details> All three of the initially spotlighted traits are generically implemented on `&mut` references. Rustdoc currently treats a `&mut T` reference-to-a-generic as an impl on the reference primitive itself. `&mut Self` counts as a generic in the eyes of rustdoc. All this combines to create this lovely scene on `Iterator::by_ref`: <details><summary>`Iterator::by_ref` spotlights Iterator, Read, and Write (pic of old design)</summary>  </details> | ||||
| 2017-11-20 | Strongly improve search path | Guillaume Gomez | -10/+37 | |
| 2017-11-19 | Fix path search in docs | Guillaume Gomez | -82/+114 | |
| 2017-11-18 | Add tooltip for important traits display | Guillaume Gomez | -1/+2 | |
| 2017-11-18 | Auto merge of #46073 - GuillaumeGomez:rollup, r=GuillaumeGomez | bors | -45/+43 | |
| Rollup of 4 pull requests - Successful merges: #45767, #46044, #46066, #46071 - Failed merges: | ||||
| 2017-11-17 | Add trait methods as well | Guillaume Gomez | -1/+8 | |
| 2017-11-17 | Improve modal display and add JS events | Guillaume Gomez | -7/+83 | |
| 2017-11-17 | First step for important traits UI | Guillaume Gomez | -1/+47 | |
| 2017-11-17 | spotlight Iterator/Read/Write impls on function return types | QuietMisdreavus | -4/+5 | |
| 2017-11-17 | Fix primitive types not showing up | Guillaume Gomez | -45/+43 | |
| 2017-11-15 | Support `extern type` in rustdoc. | kennytm | -1/+5 | |
| Fixes #45640. | ||||
| 2017-11-13 | "Types/modules" in tab to "In name" | JRegimbal | -2/+2 | |
| "Types/modules" doesn't properly describe the results since it includes other things whose name matches the search term. | ||||
| 2017-11-12 | Add "As parameters" items as well | Guillaume Gomez | -22/+25 | |
| 2017-11-12 | Improve result output | Guillaume Gomez | -5/+8 | |
| 2017-11-12 | Big JS optimization | Guillaume Gomez | -15/+11 | |
| 2017-11-12 | Add elements count in tab search title | Guillaume Gomez | -6/+13 | |
| 2017-11-12 | JS big updates | Guillaume Gomez | -109/+254 | |
| 2017-11-11 | Rollup merge of #45812 - GuillaumeGomez:links-and-search, r=QuietMisdreavus | Guillaume Gomez | -3/+31 | |
| Fix navbar click while in a search Fixes #45790. | ||||
| 2017-11-11 | Few improvements on search, history and title | Guillaume Gomez | -5/+10 | |
| 2017-11-10 | Allow to go back to previous search | Guillaume Gomez | -0/+14 | |
