summaryrefslogtreecommitdiff
path: root/src/report.h
Commit message (Collapse)AuthorAgeFilesLines
* Fixed some #include ordering issues.John Wiegley2009-02-071-1/+1
|
* Renamed escape to quoted, and fixed up the csv report.John Wiegley2009-02-071-1/+1
|
* Allow value expressions to gain access to option settings.John Wiegley2009-02-071-0/+6
| | | | | | | | | | For example, "ledger eval options.limit" prints 0 (for false), but: "ledger -l hello eval options.limit" print "hello"s, since the value of options.limit, once set to a value, is that string. For flag options, such as -Y, eval prints 0 if unset, and 1 if set. This feature allows value expressions to be conditionalized based on the presence of user options.
* Fixed the way that --limit, --only and --display are handled.John Wiegley2009-02-071-3/+21
|
* More revision to the way options are handled; reworked CSV command.John Wiegley2009-02-071-1/+9
|
* Removed --reconcile and --reconcile-date.John Wiegley2009-02-071-2/+0
|
* Moved the --abbrev-len option to report_t.John Wiegley2009-02-061-0/+1
|
* Removed the nearly unknown --descend and --descend-if options.John Wiegley2009-02-061-2/+0
|
* Restored all the option handlers from 2.6.2, but not the options themselves.John Wiegley2009-02-061-670/+144
|
* Moved --pager handler back into report_t.John Wiegley2009-02-051-0/+2
|
* Greatly simplified the way option and command handlers are defined.John Wiegley2009-02-051-215/+188
|
* Support using Ledger as a script interpretor.John Wiegley2009-02-051-2/+2
| | | | | The file must begin with '#!/usr/bin/env ledger --script'. You can add a -f option to the options, but it must come before --script.
* Reworked how the REPL is handled.John Wiegley2009-02-051-5/+58
|
* Removed all references to the old binary cache.John Wiegley2009-02-041-8/+0
|
* Moved the --pager option to the session object, rather than the report object.John Wiegley2009-02-041-6/+0
|
* Largely removed all of Ledger's use of global variables, for the REPL's sake.John Wiegley2009-02-041-37/+48
|
* Removed the global references to session->report.John Wiegley2009-02-031-4/+1
|
* Updated some internal documentation.John Wiegley2009-02-021-6/+6
|
* Simplified error context handling.John Wiegley2009-02-021-1/+4
|
* Changed many uses of "unsigned long" to std::size_t.John Wiegley2009-02-011-1/+1
|
* Moved chain_xact_handlers into its own file, chain.h and chain.cc.John Wiegley2009-02-011-4/+0
|
* Restored the --pager option.John Wiegley2009-02-011-1/+1
|
* Inspired by Omari Norman, I've rewritten main.cc so it's easy to approach.John Wiegley2009-01-311-0/+2
|
* Added documentation stubs for all include files and classes.John Wiegley2009-01-311-0/+19
|
* Created a new stream.h file for dealing with output streaming.John Wiegley2009-01-301-53/+54
|
* Changed the order in which options are processed, to provide for the correctJohn Wiegley2009-01-211-6/+9
| | | | | | | | | | | overrides. 1. Global defaults 2. Environment variable settings 3. Initialization file 4. Command-line arguments Whatever is later in the list overrides what is earlier.
* Added support for "anonymizing" any report with --anon.John Wiegley2009-01-201-0/+7
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Added back several cost reporting options.John Wiegley2009-01-191-18/+24
|
* Added back the -V (market value) option.John Wiegley2009-01-191-0/+2
|
* Added the concept of a "display_total", used for showing the values in theJohn Wiegley2009-01-191-0/+3
| | | | | totals column of both the register and balance reports. This is different from the internal calculated total, which is still "total_expr".
* Commented out some dead code.John Wiegley2008-09-201-0/+2
|
* Restored --cleared, --pending, --uncleared, -X and -Y.John Wiegley2008-09-161-10/+13
|
* Restored --format, --date-format (-y), and --input-date-format options.John Wiegley2008-09-141-5/+7
|
* Re-enabled many more options, among them -n.John Wiegley2008-08-141-17/+28
|
* Restored the -p, -b and -e reporting options.John Wiegley2008-08-141-70/+78
|
* Moved a block of code from report to session, though it's still commented out.John Wiegley2008-08-141-13/+0
|
* Enabled the --tail and --head options.John Wiegley2008-08-131-6/+10
|
* Regular expressions supplied after 'reg' or 'bal' are working again.John Wiegley2008-08-101-3/+7
|
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+757
is in doc/, etc.