| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2016-04-07 | Make `hir::Visibility` non-copyable and add `ty::Visibility` | Jeffrey Seyfried | -17/+17 | |
| 2016-04-06 | Auto merge of #32230 - GuillaumeGomez:extend_css, r=alexcrichton | bors | -6/+32 | |
| Add --extend-css option to rustdoc Fixes #32223 r? @brson | ||||
| 2016-04-06 | Update to last rustdoc version | Guillaume Gomez | -5/+5 | |
| 2016-04-06 | rustc: move middle::{def,def_id,pat_util} to hir. | Eduard Burtescu | -2/+2 | |
| 2016-04-06 | rustc: move rustc_front to rustc::hir. | Eduard Burtescu | -2/+2 | |
| 2016-04-05 | Rollup merge of #32715 - nrc:rustdoc-highlight, r=cmr | Manish Goregaokar | -26/+49 | |
| rustdoc: factor out function for getting inner html of highlighted source | ||||
| 2016-04-05 | Centralize nightly compiler flags handling | Guillaume Gomez | -4/+0 | |
| 2016-04-05 | Add --extend-css option to rustdoc | Guillaume Gomez | -7/+37 | |
| 2016-04-04 | rustdoc: factor out function for getting inner html of highlighted source | Nick Cameron | -26/+49 | |
| 2016-04-02 | Slim down `rustdoc::html::render::Context` | mitaa | -40/+47 | |
| Like the comment on `Context` explains, `Context` is supposed to be lightweight, so we're putting everything that's immutable after creation of the Context behind an `Arc<SharedContext>`. | ||||
| 2016-04-02 | Refactor `HiddenStructField` into `StrippedItem` | mitaa | -26/+14 | |
| 2016-04-02 | Make the rendering process less pass-aware | mitaa | -101/+91 | |
| Instead of hardcoding knowledge about the strip-private pass into the rendering process we represent (some) stripped items as `ItemEnum::StrippedItem`. Rustdoc will, for example, generate redirect pages for public items contained in private modules which have been re-exported to somewhere externally reachable - this will now not only work for the `strip-private` pass, but for other passes as well, such as the `strip-hidden` pass. | ||||
| 2016-03-28 | Auto merge of #32461 - mitaa:rdoc-anchors, r=alexcrichton | bors | -80/+116 | |
| rustdoc: Correct anchor for links to associated trait items fixes #28478 r? @alexcrichton | ||||
| 2016-03-27 | Don't initialize id-map when rendering md files | mitaa | -7/+13 | |
| Adding these "known" values to the table of used ids is only required when embedding markdown into a rustdoc html page and may yield unexpected results when rendering a standalone `*.md` file. | ||||
| 2016-03-27 | Linkify associated types and constants | mitaa | -17/+41 | |
| 2016-03-27 | Don't hardcode item-type anchor ids | mitaa | -13/+17 | |
| These should always correspond to the values in `ItemType::to_static_str` | ||||
| 2016-03-27 | Correct anchor for links to associated trait items | mitaa | -45/+47 | |
| 2016-03-25 | Avoid page reload upon hitting "S" when browing in local mode | Novotnik, Petr | -2/+0 | |
| 2016-03-23 | Auto merge of #32454 - eddyb:rollup, r=eddyb | bors | -2/+3 | |
| Rollup of 11 pull requests - Successful merges: #32404, #32420, #32423, #32425, #32429, #32430, #32431, #32434, #32437, #32441, #32443 - Failed merges: | ||||
| 2016-03-22 | fix alignment | Jorge Aparicio | -158/+155 | |
| 2016-03-22 | try! -> ? | Jorge Aparicio | -394/+394 | |
| Automated conversion using the untry tool [1] and the following command: ``` $ find -name '*.rs' -type f | xargs untry ``` at the root of the Rust repo. [1]: https://github.com/japaric/untry | ||||
| 2016-03-22 | Consider `doc(no_inline)` in crate-local inlining | mitaa | -2/+3 | |
| 2016-03-18 | Fix usability problem when browse document locally | York Xiang | -2/+6 | |
| 2016-03-08 | rustdoc: correct src-link url | mitaa | -1/+1 | |
| 2016-03-06 | Auto merge of #31967 - mitaa:rdoc-refactor, r=alexcrichton | bors | -260/+170 | |
| This is mostly cleanup of individual code bits and code reuse for `clean::Attribute` handling. The only change in behaviour should be that emitted sources are now being recorded and queried when trying to create src-links to local source-files. r? @alexcrichton | ||||
| 2016-03-04 | This doesn't seem necessary? | mitaa | -1/+1 | |
| 2016-03-04 | Use const instead of function | mitaa | -5/+3 | |
| 2016-03-04 | Use `Item::is_*` methods consistently | mitaa | -18/+6 | |
| 2016-03-04 | Refactor rustdocs attribute handling | mitaa | -38/+9 | |
| 2016-03-04 | Simplify `if let`/`match` expressions | mitaa | -172/+134 | |
| 2016-03-03 | Refactor src-link creation for local sources | mitaa | -41/+32 | |
| Since we emit the sources beforhand we actually **know** whether we can safely create src-links to these files and where they are stored. | ||||
| 2016-03-03 | Responsive layout correction. | gohyda | -3/+7 | |
| 2016-02-27 | Correct plain-summary-line | mitaa | -2/+2 | |
| For plaintext we don't actually need to render the Markdown before shortening the string. (and this may have led to wrong output) | ||||
| 2016-02-27 | Clearly separate code blocks from other blocks | mitaa | -1/+3 | |
| For summary descriptions we need the first paragraph (adjacent lines until a blank line) - but the rendered markdown of a code block did not leave a blank line in the html and was thus included in the summary line. | ||||
| 2016-02-25 | Rollup merge of #31837 - mitaa:rdoc-inherent-assoc, r=alexcrichton | Manish Goregaokar | -4/+11 | |
| This effectively only records associated items from either inherent impls or trait definitions in the search-index. fixes #31808 r? @alexcrichton | ||||
| 2016-02-25 | Rollup merge of #31835 - mitaa:rdoc-global-src, r=alexcrichton | Manish Goregaokar | -8/+11 | |
| fixes #26995 r? @alexcrichton | ||||
| 2016-02-24 | Fix source-links for files with absolute-paths | mitaa | -7/+8 | |
| `clean_srcpath` tries to make the source-path relative to `src_root`, but this didn't work since `src_root` itself wasn't absolute. | ||||
| 2016-02-24 | Allow creation of src-links for device files | mitaa | -1/+3 | |
| 2016-02-23 | Show associated types in inherent impls | mitaa | -6/+3 | |
| 2016-02-23 | Don't show associated consts from trait impls | mitaa | -0/+10 | |
| 2016-02-23 | Don't record self parameter for static methods | mitaa | -6/+7 | |
| 2016-02-22 | Auto merge of #31715 - mitaa:rdoc-index-crate, r=alexcrichton | bors | -111/+112 | |
| This allows to search for crates in documentation and simplifies the json serialization of the search-index. fixes #14077 | ||||
| 2016-02-22 | Simplify search-index serialization | mitaa | -112/+94 | |
| 2016-02-16 | Add crates to search-index | mitaa | -9/+28 | |
| 2016-02-16 | doc pages: add the ability to search unknown types | Brandon W Maister | -4/+4 | |
| This enables `*` in all type positions in doc searches, which I often want in order to find functions that create or convert specific types (e.g. `* -> vec`) but I don't actually know what kinds of input they expect. I actually started working on this because of #31598, but I've wanted it several times when exploring new crates. | ||||
| 2016-02-14 | Auto merge of #31626 - mitaa:rdoc-srch-escape, r=alexcrichton | bors | -2/+2 | |
| Maybe they should be Markdown rendered instead, though that doesn't really seem to work all that well. fixes #31059 r? @alexcrichton | ||||
| 2016-02-14 | Auto merge of #31614 - mitaa:rdoc_locitem_extmac, r=alexcrichton | bors | -5/+11 | |
| fixes #26606 r? @alexcrichton | ||||
| 2016-02-13 | Auto merge of #31602 - mitaa:rdoc_doc_shorter, r=alexcrichton | bors | -3/+4 | |
| fixes #25787 fixes #30366 r? @alexcrichton | ||||
| 2016-02-13 | Auto merge of #31596 - mitaa:rdoc_assoc_item, r=alexcrichton | bors | -4/+4 | |
| 2016-02-13 | Escape search-index item descriptions | mitaa | -2/+2 | |
| The item descriptions are included verbatim in search results causing certain character sequences to misbehave. | ||||
