summary refs log tree commit diff
path: root/src/rustdoc/rustdoc.rs
AgeCommit message (Collapse)AuthorLines
2012-07-04convert doc-attributes to doc-comments using ↵Gareth Daniel Smith-2/+2
./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498
2012-07-04Remove empty argument lists from do expressionsBen Striegel-2/+2
2012-07-01Convert to new closure syntaxBrian Anderson-7/+7
2012-06-30Eliminate usages of old sugared call syntaxBrian Anderson-8/+8
2012-06-29Switch the compiler over to using ~[] notation instead of []/~. Closes #2759.Michael Sullivan-12/+12
2012-06-25Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725.Michael Sullivan-9/+9
2012-03-22make --enforce-mut-vars always on, add mut annotations to remaining filesNiko Matsakis-1/+1
2012-03-16rustdoc: Escape backslashesBrian Anderson-0/+1
2012-03-12Libc/os/run/rand/io reorganization. Close #1373. Close #1638.Graydon Hoare-1/+1
- Move io, run and rand to core. - Remove incorrect ctypes module (use libc). - Remove os-specific modules for os and fs. - Split fs between core::path and core::os.
2012-03-09rustdoc: Vastly simplify the document modelBrian Anderson-3/+0
Don't attempt to impose any structure for documenting arguments, return values, etc.
2012-03-09rustdoc: Add the concept of 'sections'Brian Anderson-1/+2
2012-03-07rustdoc: Support #[doc(hidden)]Brian Anderson-0/+1
2012-03-06rustdoc: Remove escaping passBrian Anderson-1/+0
2012-03-06rustdoc: Escape HTML special charactersBrian Anderson-0/+1
2012-03-06rustdoc: Write links correctly for multi-page docsBrian Anderson-1/+1
2012-03-06rustdoc: Write a new file for each pageBrian Anderson-0/+1
2012-03-06rustdoc: Remove Google's copyright noticeBrian Anderson-4/+0
There is no Google code left.
2012-03-03rustdoc: Convert markdown writer to a writer_factoryBrian Anderson-1/+1
2012-03-03rustdoc: Simplify the markdown_pass interface a bitBrian Anderson-1/+3
2012-03-03rustdoc: Introduce the concept of a 'page'Brian Anderson-24/+32
2012-03-02rustdoc: Begin constructing indexesBrian Anderson-0/+1
2012-03-02Revert "rust: xfail-fast run-pass/cci_no_inline_exe"Brian Anderson-1/+0
This reverts commit 95099cddcf2691fcbb389db657c70cf80d776918.
2012-03-02rust: xfail-fast run-pass/cci_no_inline_exeBrian Anderson-0/+1
2012-03-01rustdoc: Add index records to the doc treeBrian Anderson-2/+4
2012-02-29rustdoc: Refactor markdown_passBrian Anderson-4/+5
2012-02-28rustdoc: Parse command line optsBrian Anderson-7/+9
2012-02-28rustdoc: Add -h flagBrian Anderson-0/+5
2012-02-27rustdoc: Clean up pass namesBrian Anderson-1/+1
2012-02-27rustdoc: Time passesBrian Anderson-4/+31
2012-02-24rustdoc: Don't prune reexportsBrian Anderson-1/+1
2012-02-24rustdoc: Remove a pointer that's no longer neededBrian Anderson-2/+2
2012-02-21rustdoc: Convert the astsrv constructor to a higher order fnBrian Anderson-23/+25
This will allow it to manage the destruction of the astsrv after I convert it to a task
2012-02-21rustdoc: Rename mk_srv_from_str/file to just from_str/fileBrian Anderson-2/+2
2012-02-20rustdoc: Document reexportsBrian Anderson-0/+1
2012-02-17rustdoc: Extract common item fields into itemdocBrian Anderson-11/+11
2012-02-03rustdoc: Add various sorting passesBrian Anderson-0/+2
2012-01-31rustdoc: Split the pruning of undocumented branches into two passesBrian Anderson-1/+2
prune_undoc_details_pass strips arguments and return values that are undocumented. prune_undoc_items_pass prunes entire items.
2012-01-30rustdoc: Use fewer unique pointersBrian Anderson-6/+6
2012-01-29rustdoc: Sort the items so modules are printed lastBrian Anderson-1/+1
2012-01-29rustdoc: Move mod docs into the item tagBrian Anderson-4/+2
2012-01-29rustdoc: Move fn docs into the item tagBrian Anderson-4/+2
2012-01-29rustdoc: Move const docs into the item tagBrian Anderson-4/+2
2012-01-29rustdoc: Move enum docs into the item tagBrian Anderson-4/+2
2012-01-29rustdoc: Move resource docs into the item tagBrian Anderson-4/+4
2012-01-29rustdoc: Create an item tag to hold doc for all item typesBrian Anderson-0/+2
2012-01-26rustdoc: Extract resources from the ASTBrian Anderson-2/+2
2012-01-26rustdoc: Add a resource node to the doc treeBrian Anderson-2/+4
2012-01-25rustdoc: Write markdown for enumsBrian Anderson-0/+4
2012-01-24rustdoc: Add enums to the doc treeBrian Anderson-2/+4
2012-01-24rustdoc: Add a pass to normalize indentation levels in doc commentsBrian Anderson-0/+1