summaryrefslogtreecommitdiff
path: root/src/print.cc
Commit message (Collapse)AuthorAgeFilesLines
* Corrected printing of assigned amountsJohn Wiegley2010-06-181-1/+1
|
* Untabified all source filesJohn Wiegley2010-06-111-91/+91
|
* Fixed the "generate" commandJohn Wiegley2010-06-101-4/+4
|
* Fixed the way prices and costs are print'dJohn Wiegley2010-06-071-7/+9
|
* amount_t::print and value_t::print now use flagsJohn Wiegley2010-06-071-3/+4
|
* Make --anon work with the print commandJohn Wiegley2010-06-051-0/+1
| | | | Fixes #226 / C1C1E731-D991-40ED-BE43-8ED55585386C
* Inlined the print_xacts constructorJohn Wiegley2010-06-021-7/+0
|
* New: --group-by=EXPR and --group-title-format=FMTJohn Wiegley2010-05-301-1/+11
| | | | | | | | | | | | | | | | | | | | | The --group-by option allows for most reports to be split up into sections based on the varying value of EXPR. For example, to see register subtotals by payee, use: ledger reg --group-by=payee -s This works for separated balances too: ledger bal --group-by=payee Another interesting possibility is seeing a register of all the accounts affected by a related account: ledger reg -r --group-by=payee The option --group-title-format can be used to add a separator bar to the group titles. The option --no-titles can be used to drop titles altogether.
* print honors --columns, --account,amount-widthJohn Wiegley2010-05-221-22/+59
|
* The print command now honors use of --date-formatJohn Wiegley2010-05-221-3/+10
|
* print command correctly prints amount expressionsJohn Wiegley2010-05-071-3/+9
|
* Improved the new implementation of "print"John Wiegley2010-03-171-4/+4
|
* Rewrite the "print" command as a custom functionJohn Wiegley2010-03-081-0/+208
There ended up being too many corner cases for the generalized formatter to handle.