| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-03-09 | rustdoc: Update the demo module | Brian Anderson | -95/+73 | |
| 2012-03-09 | rustdoc: Write sections in markdown | Brian Anderson | -60/+93 | |
| 2012-03-09 | rustdoc: Add the concept of 'sections' | Brian Anderson | -2/+337 | |
| 2012-03-09 | Add an infinite loop construct | Tim Chevalier | -2/+2 | |
| Add a loop {} construct for infinite loops, and use it in test cases. See #1906 for details. | ||||
| 2012-03-08 | rustdoc: Rename desc_pass to text_pass | Brian Anderson | -3/+3 | |
| 2012-03-08 | Rename last to last_opt, last_unsafe to last | Tim Chevalier | -1/+1 | |
| As per discussion on IRC. I am about to file an RFC for further discussion about the more general issue of whether to enforce invariants through types, typestate, or dynamic checks, but for now, removing the misleading name "last_unsafe". | ||||
| 2012-03-08 | rustdoc: Improve formatting of subsection headers | Brian Anderson | -14/+21 | |
| 2012-03-08 | rustdoc: Format return values consistently | Brian Anderson | -6/+6 | |
| 2012-03-08 | rustdoc: Add some more demo docs | Brian Anderson | -0/+30 | |
| 2012-03-08 | rustdoc: Don't bother reporting the type of return values | Brian Anderson | -240/+19 | |
| 2012-03-08 | rustdoc: Don't bother reporting the type of arguments | Brian Anderson | -125/+10 | |
| This is already displayed in the function signature. Simpler this way. | ||||
| 2012-03-08 | Rename last_total to last_unsafe | Tim Chevalier | -1/+3 | |
| See Issue 1943 for any discussion (reopen it if necessary). Closes #1943 | ||||
| 2012-03-08 | Drop collect_items pass, create decls on demand | Marijn Haverbeke | -5/+5 | |
| This solves a problem with inlined functions that have inner functions. | ||||
| 2012-03-07 | rustdoc: Look for pandoc in ~/.cabal | Brian Anderson | -2/+6 | |
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -2/+8 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-07 | Revert "stdlib: Stop incurring vtable dispatch costs when hashmaps are used" | Patrick Walton | -7/+2 | |
| This reverts commit f0250a23d3fa2f8b4a4a4113ca89e41945a4cfed. | ||||
| 2012-03-07 | stdlib: Stop incurring vtable dispatch costs when hashmaps are used | Patrick Walton | -2/+7 | |
| This required changing almost all users of hashmaps to import the hashmap interface first. The `size` member in the hashmap structure was renamed to `count` to work around a name conflict. | ||||
| 2012-03-07 | rustdoc: Implement more rules for generating internal pandoc links | Brian Anderson | -2/+11 | |
| 2012-03-07 | rustdoc: Support #[doc(hidden)] | Brian Anderson | -0/+89 | |
| 2012-03-06 | rustdoc: Remove escaping pass | Brian Anderson | -46/+0 | |
| 2012-03-06 | rustdoc: Don't escape characters between backticks | Brian Anderson | -0/+20 | |
| 2012-03-06 | rustdoc: Escape HTML special characters | Brian Anderson | -0/+26 | |
| 2012-03-06 | rustdoc: Put brief descriptions in the indexes | Brian Anderson | -1/+29 | |
| 2012-03-06 | rustdoc: Write links correctly for multi-page docs | Brian Anderson | -26/+91 | |
| 2012-03-06 | rustdoc: Parallelize markdown_pass | Brian Anderson | -3/+3 | |
| 2012-03-06 | rustdoc: Run pandoc in a way that won't deadlock waiting for IO | Brian Anderson | -6/+13 | |
| 2012-03-06 | rustdoc: Detect when pandoc isn't available | Brian Anderson | -24/+104 | |
| 2012-03-06 | rustdoc: Add some more error reporting for pandoc | Brian Anderson | -2/+25 | |
| 2012-03-06 | rustdoc: Write a new file for each page | Brian Anderson | -15/+47 | |
| 2012-03-06 | rustdoc: Add a pass to split the document into pages | Brian Anderson | -0/+237 | |
| 2012-03-06 | rustdoc: Remove Google's copyright notice | Brian Anderson | -4/+0 | |
| There is no Google code left. | ||||
| 2012-03-06 | make inline enabled by default | Niko Matsakis | -1/+0 | |
| 2012-03-06 | Track all exports in exp_map | Marijn Haverbeke | -19/+24 | |
| This is needed because the reachability checker needs to be able to follow exports. Issue #1934 | ||||
| 2012-03-04 | rustdoc: Build appropriate filenames for pages | Brian Anderson | -23/+75 | |
| 2012-03-03 | rustdoc: Convert markdown writer to a writer_factory | Brian Anderson | -28/+79 | |
| 2012-03-03 | rustdoc: Simplify the markdown_pass interface a bit | Brian Anderson | -15/+6 | |
| 2012-03-03 | rustdoc: Remove some bogus error handling around process spawning | Brian Anderson | -8/+2 | |
| 2012-03-03 | rustdoc: Introduce the concept of a 'page' | Brian Anderson | -314/+381 | |
| 2012-03-02 | rustdoc: Whitespace | Brian Anderson | -1/+1 | |
| 2012-03-02 | rustdoc: Write indexes in output | Brian Anderson | -0/+34 | |
| 2012-03-02 | rustdoc: Begin constructing indexes | Brian Anderson | -23/+130 | |
| 2012-03-02 | Revert "rust: xfail-fast run-pass/cci_no_inline_exe" | Brian Anderson | -31/+2 | |
| This reverts commit 95099cddcf2691fcbb389db657c70cf80d776918. | ||||
| 2012-03-02 | rust: xfail-fast run-pass/cci_no_inline_exe | Brian Anderson | -2/+31 | |
| 2012-03-02 | rustdoc: Remove some debug logging | Brian Anderson | -2/+0 | |
| 2012-03-01 | rustdoc: Extract markdown header logic. Needed for indexing | Brian Anderson | -30/+78 | |
| 2012-03-01 | rustdoc: Stop having pandoc write the TOC | Brian Anderson | -1/+0 | |
| We will generate them ourselves | ||||
| 2012-03-01 | rustdoc: Add index records to the doc tree | Brian Anderson | -4/+31 | |
| 2012-03-01 | rustdoc: Teach rustdoc to run pandoc | Brian Anderson | -6/+74 | |
| 2012-02-29 | rustdoc: Extract markdown_writer from markdown_pass | Brian Anderson | -90/+103 | |
| 2012-02-29 | rustdoc: Write markdown to a file instead of stdout | Brian Anderson | -7/+47 | |
