| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Downcase std modules again, move to :: for module dereferencing | Marijn Haverbeke | 2011-05-12 | 1 | -568/+0 |
| | | | | | This should be a snapshot transition. | ||||
| * | Rename std modules to be camelcased | Marijn Haverbeke | 2011-05-06 | 1 | -38/+38 |
| | | | | | (Have fun mergining your stuff with this.) | ||||
| * | Fix the interaction between various flags in #fmt | Brian Anderson | 2011-04-26 | 1 | -7/+12 |
| | | |||||
| * | Support octal #fmt conversions | Brian Anderson | 2011-04-26 | 1 | -0/+7 |
| | | |||||
| * | Make #fmt char conversions behave like printf | Brian Anderson | 2011-04-26 | 1 | -1/+1 |
| | | |||||
| * | replace error logging with log_err in stdlib and rustc | Marijn Haverbeke | 2011-04-19 | 1 | -3/+3 |
| | | |||||
| * | Precision overrides 0-padding in #fmt | Brian Anderson | 2011-04-18 | 1 | -34/+49 |
| | | |||||
| * | Rearrange ExtFmt.RT.pad to recover some horizontal space | Brian Anderson | 2011-04-18 | 1 | -49/+51 |
| | | |||||
| * | Left-justification overrides 0-padding in #fmt | Brian Anderson | 2011-04-18 | 1 | -22/+24 |
| | | |||||
| * | Support 0 flag in #fmt | Brian Anderson | 2011-04-18 | 1 | -5/+49 |
| | | |||||
| * | Support the space flag in #fmt | Brian Anderson | 2011-04-17 | 1 | -4/+9 |
| | | |||||
| * | Support + flag in #fmt | Brian Anderson | 2011-04-17 | 1 | -3/+8 |
| | | |||||
| * | Support #fmt precision for bools, with same rules as strings | Brian Anderson | 2011-04-17 | 1 | -2/+6 |
| | | | | | | Not totally confident this is desirable. The alternative would be to make it a compile error. | ||||
| * | Treat char #fmt conversions just like str conversions | Brian Anderson | 2011-04-17 | 1 | -1/+1 |
| | | | | | Add missing tests | ||||
| * | Support #fmt precision for signed types | Brian Anderson | 2011-04-17 | 1 | -37/+46 |
| | | |||||
| * | Support #fmt precision for unsigned types | Brian Anderson | 2011-04-17 | 1 | -11/+49 |
| | | |||||
| * | Support #fmt precision for string types | Brian Anderson | 2011-04-17 | 1 | -2/+25 |
| | | |||||
| * | Support left-justification in #fmt conversions | Brian Anderson | 2011-04-16 | 1 | -3/+29 |
| | | |||||
| * | Make #fmt support explicit conversion widths | Brian Anderson | 2011-04-16 | 1 | -9/+45 |
| | | |||||
| * | Add support for upper-case hex and binary output to #fmt. | Brian Anderson | 2011-04-13 | 1 | -0/+6 |
| | | | | | Only works for uints at present. Necessitated the addition of _str.to_upper. | ||||
| * | Add more commentary about ExtFmt | Brian Anderson | 2011-04-13 | 1 | -1/+30 |
| | | |||||
| * | Add support for printing uints as lower-case hex to ExtFmt. | Brian Anderson | 2011-04-13 | 1 | -5/+22 |
| | | | | | | Begin passing an ExtFmt.RT.conv parsed format description to each of the ExtFmt.RT.conv* functions. | ||||
| * | Move #fmt conversion model into ExtFmt.CT namespace | Brian Anderson | 2011-04-13 | 1 | -44/+44 |
| | | |||||
| * | Factor out creation of calls into ExtFmt.RT | Brian Anderson | 2011-04-11 | 1 | -4/+4 |
| | | |||||
| * | Add support for bool, char to extfmt. | Brian Anderson | 2011-04-11 | 1 | -0/+12 |
| | | | | | XFAIL syntax-extension-fmt in rustboot. | ||||
| * | Move ExtFmt compile-time functions into their own module | Brian Anderson | 2011-04-11 | 1 | -170/+173 |
| | | |||||
| * | Use correct indentation for ExtFmt.rs | Brian Anderson | 2011-04-11 | 1 | -6/+15 |
| | | |||||
| * | Make ExtFmt call its own functions instead of others defined in std | Brian Anderson | 2011-04-11 | 1 | -0/+11 |
| | | |||||
| * | Move extfmt parsing into standard library | Brian Anderson | 2011-04-11 | 1 | -0/+213 |
| | | |||||
| * | Move the extfmt data model into the standard library. | Brian Anderson | 2011-04-11 | 1 | -0/+47 |