| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-05-15 | Inline get_type | varkor | -2/+5 | |
| 2018-05-15 | Rename GenericParam to GenericParamDef | varkor | -1/+1 | |
| 2018-05-15 | Rollup merge of #50632 - GuillaumeGomez:minification, r=ollie27 | Guillaume Gomez | -10/+26 | |
| Add minification process r? @QuietMisdreavus | ||||
| 2018-05-15 | Auto merge of #50259 - GuillaumeGomez:improve-results, r=ollie27 | bors | -8/+30 | |
| Rustdoc improvements Fixes #50658. (last commit) A lot of small improvements. r? @QuietMisdreavus | ||||
| 2018-05-12 | Reduce js files size | Guillaume Gomez | -6/+10 | |
| 2018-05-12 | Handle blur on theme buttons nicely | Guillaume Gomez | -1/+19 | |
| 2018-05-12 | Add missing description in alias items | Guillaume Gomez | -3/+3 | |
| 2018-05-12 | Add minification process | Guillaume Gomez | -10/+26 | |
| 2018-05-09 | use fmt::Result where applicable | Andre Bogus | -2/+2 | |
| 2018-05-03 | Auto merge of #50413 - kennytm:rollup, r=kennytm | bors | -1/+1 | |
| Rollup of 12 pull requests Successful merges: - #50302 (Add query search order check) - #50320 (Fix invalid path generation in rustdoc search) - #50349 (Rename "show type declaration" to "show declaration") - #50360 (Clarify wordings of the `unstable_name_collision` lint.) - #50365 (Use two vectors in nearest_common_ancestor.) - #50393 (Allow unaligned reads in constants) - #50401 (Revert "Implement FromStr for PathBuf") - #50406 (Forbid constructing empty identifiers from concat_idents) - #50407 (Always inline simple BytePos and CharPos methods.) - #50416 (check if the token is a lifetime before parsing) - #50417 (Update Cargo) - #50421 (Fix ICE when using a..=b in a closure.) Failed merges: | ||||
| 2018-05-03 | Fix invalid path generation in rustdoc search | Guillaume Gomez | -1/+1 | |
| 2018-05-02 | make it compile again | flip1995 | -1/+1 | |
| 2018-05-02 | Remove Option from the return type of Attribute::name() | Seiichi Uchida | -1/+1 | |
| 2018-04-27 | Rollup merge of #50229 - GuillaumeGomez:search-one-result, r=QuietMisdreavus | kennytm | -0/+2 | |
| Add setting to go to item if there is only one result Fixes #50216. r? @QuietMisdreavus | ||||
| 2018-04-26 | Add setting to go to item if there is only one result | Guillaume Gomez | -0/+2 | |
| 2018-04-26 | rustc_target: move in syntax::abi and flip dependency. | Irina Popa | -1/+2 | |
| 2018-04-22 | Auto merge of #49954 - GuillaumeGomez:doc-settings, r=ollie27,QuietMisdreavus | bors | -3/+76 | |
| Add rustdoc settings menu Fixes #18167. r? @QuietMisdreavus | ||||
| 2018-04-21 | Add aliases in the search as well | Guillaume Gomez | -3/+7 | |
| 2018-04-21 | Generate alias file | Guillaume Gomez | -6/+74 | |
| 2018-04-21 | Remove link generation on image, favicon and logo in settings | Guillaume Gomez | -17/+19 | |
| 2018-04-17 | Add rustdoc settings menu | Guillaume Gomez | -3/+74 | |
| 2018-04-17 | Rollup merge of #50032 - ollie27:rustdoc_all_private, r=GuillaumeGomez | Guillaume Gomez | -1/+3 | |
| rustdoc: Don't include private paths in all.html For example the `std` [`all.html`](https://doc.rust-lang.org/nightly/std/all.html) includes references to the `coresimd` module which is a private implementation detail. r? @GuillaumeGomez | ||||
| 2018-04-16 | Add rustdoc-ui test suite | Guillaume Gomez | -1/+1 | |
| 2018-04-13 | rustdoc: Don't include private paths in all.html | Oliver Middleton | -1/+3 | |
| 2018-04-10 | Auto merge of #49504 - GuillaumeGomez:doc-all-types, r=QuietMisdreavus | bors | -36/+205 | |
| Add page to list all crate's items r? @QuietMisdreavus | ||||
| 2018-04-07 | Improve code | Guillaume Gomez | -21/+20 | |
| 2018-04-06 | Auto merge of #49335 - ↵ | bors | -11/+19 | |
| GuillaumeGomez:remove-unneeded-trait-implementations-title, r=QuietMisdreavus Remove unneeded trait implementations titles r? @QuietMisdreavus | ||||
| 2018-04-06 | Use `Ident` instead of `Name` in `MetaItem` | Vadim Petrochenkov | -1/+1 | |
| 2018-04-04 | Rollup merge of #49516 - GuillaumeGomez:add-union-field-missing-anchor, ↵ | kennytm | -2/+7 | |
| r=QuietMisdreavus Add missing anchor for union type fields r? @QuietMisdreavus | ||||
| 2018-04-04 | Rollup merge of #49179 - varkor:future-deprecation, ↵ | kennytm | -4/+18 | |
| r=QuietMisdreavus,GuillaumeGomez Handle future deprecation annotations This adds special handling to the `since` parameter of the `deprecated` attribute: in particular, if the `since` version exceeds the version of the compiler, the deprecation notice will not be printed; but a note is added to the documentation stating that the item will be deprecated in a later version. (I've used `since` for this, rather than adding a new attribute, because it's more seamless and, I feel, intuitive. Plus it involves less code churn.)   This is a prerequisite for doing things renaming methods in the standard library (e.g. #30459). Resolves #30785. | ||||
| 2018-04-04 | Add page to list all crate's items | Guillaume Gomez | -36/+206 | |
| 2018-03-31 | Shorten deprecation note | varkor | -2/+2 | |
| 2018-03-30 | Rename fs::read_string to read_to_string and stabilize | Matt Brubeck | -1/+1 | |
| 2018-03-30 | Add missing anchor for union type fields | Guillaume Gomez | -2/+7 | |
| 2018-03-30 | Auto merge of #49489 - kennytm:rollup, r=kennytm | bors | -6/+6 | |
| Rollup of 10 pull requests - Successful merges: #49443, #49445, #49446, #49463, #49464, #49466, #49468, #49473, #49484, #49486 - Failed merges: | ||||
| 2018-03-30 | Auto merge of #49412 - GuillaumeGomez:hide-type-decl, r=QuietMisdreavus | bors | -135/+150 | |
| Hide type declarations by default I'm not very happy for the moment about the rendering but the bases are here: <img width="610" alt="screen shot 2018-03-27 at 11 56 27" src="https://user-images.githubusercontent.com/3050060/37960492-0e045954-31b6-11e8-9cea-1ef8a3f980c4.png"> r? @QuietMisdreavus | ||||
| 2018-03-30 | Rollup merge of #49445 - GuillaumeGomez:light-theme, r=QuietMisdreavus | kennytm | -6/+6 | |
| Rename main theme into light theme r? @QuietMisdreavus | ||||
| 2018-03-29 | Remove unneeded trait implementations titles | Guillaume Gomez | -11/+19 | |
| 2018-03-29 | Rename main theme into light theme | Guillaume Gomez | -6/+6 | |
| 2018-03-28 | Fix text overlap | Guillaume Gomez | -16/+17 | |
| 2018-03-27 | Hide type declarations by default | Guillaume Gomez | -135/+150 | |
| 2018-03-26 | Add future deprecation warning to rustdoc | varkor | -4/+18 | |
| 2018-03-13 | Rollup merge of #48898 - GuillaumeGomez:remove-empty-section, r=QuietMisdreavus | kennytm | -8/+10 | |
| Remove auto trait implementation section when empty Fixes #48882. | ||||
| 2018-03-10 | Auto merge of #48755 - GuillaumeGomez:rustdoc-fixes, r=QuietMisdreavus | bors | -28/+23 | |
| Multiple rustdoc fixes Fixes #48733. r? @QuietMisdreavus | ||||
| 2018-03-09 | Remove auto trait implementation section when empty | Guillaume Gomez | -8/+10 | |
| 2018-03-09 | Add missing items in the sidebar for functions | Guillaume Gomez | -28/+23 | |
| 2018-03-05 | Add resource-suffix option for rustdoc | Guillaume Gomez | -15/+36 | |
| 2018-02-18 | Remove extra whitespace | Aaron Hill | -1/+1 | |
| 2018-02-18 | Fix inlining | Aaron Hill | -2/+7 | |
| 2018-02-18 | More formatting fixups | Aaron Hill | -1/+1 | |
