about summary refs log tree commit diff
path: root/src/rustdoc_ng/rustdoc_ng.rs
AgeCommit message (Collapse)AuthorLines
2013-09-22rustdoc: Out with the old, in with the newAlex Crichton-211/+0
Removes old rustdoc, moves rustdoc_ng into its place instead (plus drops the _ng suffix). Also shreds all reference to rustdoc_ng from the Makefile rules.
2013-09-21Update version numbers to 0.8Brian Anderson-1/+1
2013-09-20Implement a web backend for rustdoc_ngAlex Crichton-36/+125
This large commit implements and `html` output option for rustdoc_ng. The executable has been altered to be invoked as "rustdoc_ng html <crate>" and it will dump everything into the local "doc" directory. JSON can still be generated by changing 'html' to 'json'. This also fixes a number of bugs in rustdoc_ng relating to comment stripping, along with some other various issues that I found along the way. The `make doc` command has been altered to generate the new documentation into the `doc/ng/$(CRATE)` directories.
2013-09-19Turned extra::getopts functions into methodsMarvin Löbel-6/+5
Some minor api and doc adjustments
2013-09-16Add the rustdoc_ng binary to the makefile rulesAlex Crichton-0/+123
Now rustdoc_ng will be built as both a binary and a library (using the same rules as all the other binaries that rust has). Furthermore, this will also start building rustdoc_ng unit tests (and running them).