summaryrefslogtreecommitdiffstats
path: root/src
AgeCommit message (Collapse)Author
2016-10-01Ignore term NotSupported error on reset when printing cellsPierre-Henri Symoneaux
Fixes #40
2016-09-17cfg-out `csv` featureAlexander Bulaev
It pulls `rustc-serialize` which is not always desirable
2016-09-13Merge remote-tracking branch 'refs/remotes/nabijaczleweli/master'Pierre-Henri Symoneaux
Conflicts: Cargo.toml src/lib.rs
2016-09-13Updated atty version to ^0.2Pierre-Henri Symoneaux
2016-09-13Merge pull request #37 from phsym/unicode_separatorsPierre-Henri Symoneaux
Fixed wrong formatting of unicode separators
2016-09-12Add tests for CSVnabijaczleweli
2016-09-12Removed the "fork me" ribbon from documentationPierre-Henri Symoneaux
2016-09-12Fixed github forkme ribbon position in docPierre-Henri Symoneaux
#34
2016-09-12Added UT for unicode separatorsPierre-Henri Symoneaux
2016-09-12Fixed wrong formatting of unicode separatorsPierre-Henri Symoneaux
2016-09-12Implement saving and loading from CSVnabijaczleweli
Closes #13
2016-09-11Windows specific newlines is now a default featurePierre-Henri Symoneaux
The feature is named `win_crlf` Fixes #33
2016-08-21Remove extraneous return statementsMohamed Hayibor
2016-08-02Replace match with mappingMatthias Beyer
2016-08-02Replace matches with Option::and_then()Matthias Beyer
2016-08-02Replace match with mappingMatthias Beyer
2016-08-02Remove unneeded return statementsMatthias Beyer
2016-04-21Improvements to #27 (for #25)Pierre-Henri Symoneaux
2016-03-25Add some iters for use with rows to make formatting cells a bit easierWilliam Brown
2016-02-15Added github forkme ribbon to rustdocpierresy
2016-02-15Merge pull request #23 from phsym/detect_ttyPierre-Henri Symoneaux
Detect if stdout is a tty, and don't colorize table if it's not
2016-02-14Added a note in the docstring about skipping right fillingpierresy
2016-02-14Don't fill the right part of final cell in a row when there is no right ↵pierresy
borer defined int the table format
2016-02-14Fixed typopierresy
2016-02-14Implemented print_tty method, with capability to force colorization even ↵pierresy
with non tty standard output.
2016-02-14Detect if attached to a tty standard output when calling Table.printstd().pierresy
Printing using term (for colors, etc...) is performed only if output is a tty, else, fallbacks to normal printing
2016-01-20Merge branch 'master' into ascription_fixpierresy
Conflicts: .travis.yml src/row.rs
2016-01-20Merge pull request #19 from phsym/refactor_formatPierre-Henri Symoneaux
Refactored table formatting API
2016-01-19Added a section in README about formattingpierresy
2016-01-19Added an formatting example filepierresy
Changed line separator constants visibility to private
2016-01-18Started Builder implementationpierresy
Constant predefined format are now lazily evaluated
2016-01-17Implemented padding customizationpierresy
2016-01-17Implemented Default for TableFormat and LineSeparatorpierresy
2016-01-17Merge branch 'master' into ascription_fixpierresy
Conflicts: examples/style.rs
2016-01-17Removed some deprecated methodspierresy
2016-01-17Started format API refactoringpierresy
* Renamed Align enum to Alignment * Added left and right junction character customization * Added top and bottom lines customization * Added left and right borders customization
2016-01-15Changed token for cell stylepierresy
from colon (':') to arrow (`->`) in macro syntax
2016-01-14Changed token for row stylepierresy
to FlatArrow (`=>`) in macro syntax
2016-01-11Ooops, restored those lines I deleted #16pierresy
2016-01-11Fixed windows issue for pull request #16pierresy
2016-01-11Bump term to 0.4Alexander Bulaev
2016-01-04Added an example in documentation about TableSlice (#10)pierresy
2016-01-04Updated readme with some explanation about table slicing (#10)pierresy
2016-01-03Updated readmepierresy
2016-01-03Implemented print_align function for #12pierresy
Implemented print_align function to replace rust's std fill/align capability.
2015-12-29Implemented Index<usize> for TableSlicepierresy
2015-12-27#10 : Implemented AsRef<TableSlice> for Table and TablSlice typespierresy
2015-12-24Improving slicing for #10pierresy
`Table` can now be transmuted to `TableSlice`
2015-12-23First draft for #10 : Add capability to print range of rowspierresy
2015-12-08Fixes #5 : Improved capability to not print column separatorspierresy