about summary refs log tree commit diff
path: root/src/librustpkg/messages.rs
AgeCommit message (Collapse)AuthorLines
2014-02-02Remove rustpkg.Corey Richardson-43/+0
I'm sorry :'( Closes #11859
2013-11-24libextra: Remove @mut from term.Luqman Aden-14/+11
2013-11-11Move std::rt::io to std::ioAlex Crichton-1/+1
2013-10-24Remove even more of std::ioAlex Crichton-8/+15
Big fish fried here: extra::json most of the compiler extra::io_util removed extra::fileinput removed Fish left to fry extra::ebml
2013-07-04Bring compiletest/rustpkg/driver up to date on std vs coreAlex Crichton-1/+0
2013-07-01rustc: add a lint to enforce uppercase statics.Huon Wilson-3/+3
2013-06-29Great renaming: propagate throughout the rest of the codebaseCorey Richardson-2/+2
2013-06-26Refactor extra::term a bitKevin Ballard-4/+4
Move all the colors into a nested mod named color instead of prefixing with "color_". Define a new type color::Color, and make this a u16 instead of a u8 (to allow for easy comparisons against num_colors, which is a u16). Remove color_supported and replace it with num_colors. Teach fg() and bg() to "dim" bright colors down to the normal intensity if num_colors isn't high enough. Remove unnecessary copies, and fix a bug where a terminfo parse failure would try to use the wrong error and end up failing.
2013-06-14rustpkg: Write more automated testsTim Chevalier-0/+40
Automate more tests described in the commands.txt file, and add infrastructure for running them. Right now, tests shell out to call rustpkg. This is not ideal.