summaryrefslogtreecommitdiff
path: root/config.cc
Commit message (Collapse)AuthorAgeFilesLines
* Made separate modules for the csv command, since the prior method wasJohn Wiegley2008-04-131-1/+0
| | | | not fully correct.
* Reworked the way date/times are handled.John Wiegley2008-04-131-10/+9
|
* Several fixes to lot price handling.John Wiegley2008-04-131-1353/+15
|
* Further refinement of commodity lot information.John Wiegley2008-04-131-0/+8
|
* *** empty log message ***John Wiegley2008-04-131-36/+60
|
* Tons of corrections and fixes to value expressions and lot figures.John Wiegley2008-04-131-31/+37
|
* *** empty log message ***John Wiegley2008-04-131-1/+2
|
* *** empty log message ***John Wiegley2008-04-131-14/+36
|
* *** empty log message ***John Wiegley2008-04-131-12/+101
|
* *** empty log message ***John Wiegley2008-04-131-0/+5
|
* Added --ansi and --ansi-invert options.John Wiegley2008-04-131-0/+12
|
* Added new --descend option.John Wiegley2008-04-131-4/+55
|
* Added much better error location.John Wiegley2008-04-131-27/+36
|
* Added a DATETIME value type.John Wiegley2008-04-131-13/+66
|
* *** empty log message ***John Wiegley2008-04-131-6/+19
|
* Began support for improved commodity handling.John Wiegley2008-04-131-1/+16
|
* Began support for improved commodity handling.John Wiegley2008-04-131-5/+6
|
* Further improvements to lot pricing.John Wiegley2008-04-131-1/+0
|
* Checked in all major updates.John Wiegley2008-04-131-37/+153
|
* (config_t::regexps_to_predicate): Don't set the display predicate toJohn Wiegley2008-04-131-10/+15
| | | | | | show only matching accounts when the --related flag is in use (which was effectively masking out the whole point of using --related with balance reports).
* *** empty log message ***John Wiegley2008-04-131-1/+1
|
* *** empty log message ***John Wiegley2008-04-131-1/+0
|
* Made several changes to the parsing infrastructure to allow passingJohn Wiegley2008-04-131-0/+1
| | | | | the "config_t" object around. This is needed for parsing option settings in the initialization file.
* Removed Python integration support.John Wiegley2008-04-131-150/+0
|
* Added support for outputting to CSV format.John Wiegley2008-04-131-1/+7
|
* Restructed the code that it can build and be used as a shared library.John Wiegley2008-04-131-225/+320
| | | | | The command-line version is still statically bound in the build process by default (for the sake of speed).
* Added a `terminus' global, which if set marks the "current time" asJohn Wiegley2008-04-131-0/+5
| | | | | | seen by the value expression logic. This has the effect of changing valexprs that test against the current time, such as for calculating the market value of commodities.
* When computing a report period, use the direct results of the parseJohn Wiegley2008-04-131-2/+14
| | | | rather than passing back to --begin and --end.
* See ChangeLogJohn Wiegley2008-04-131-2/+6
|
* Support has been added for clearing of individual transactions. SetJohn Wiegley2008-04-131-4/+7
| | | | `ledger-clear-whole-entries' in Emacs to revert to the old behavior.
* *** empty log message ***John Wiegley2008-04-131-1/+1
|
* Changed the --begin and --end switches to rely on interval parsing toJohn Wiegley2008-04-131-2/+18
| | | | | determine the beginning and ending of their range. Also, the ending is now inclusive.
* Moved the setting of time quantities to the commodity initializationJohn Wiegley2008-04-131-20/+0
| | | | section.
* *** empty log message ***John Wiegley2008-04-131-0/+2
|
* (process_options): Test the "i" and "arg" variables thoroughly beforeJohn Wiegley2008-04-131-4/+5
| | | | making use of either one of them.
* (regexps_to_predicate): Don't modify the display predicate for balanceJohn Wiegley2008-04-131-3/+3
| | | | commands if a payee regexp is being processed.
* When --input-date-format is seen, don't wipe out the rest of the dateJohn Wiegley2008-04-131-4/+3
| | | | | | formats, simply replace the first one. Then, when --period is seen, use the first date format as the template for what to pass to the begin/end options.
* (process_options): Corrected a long-standing error with using "--" toJohn Wiegley2008-04-131-1/+1
| | | | separate payee regexps from account regexps.
* Added --input-date-format, which affects how dates in textual and QIFJohn Wiegley2008-04-131-0/+7
| | | | | files are parsed -- but not the dates inside a price database, whose format is fixed.
* Use std::localtime instead of std::gmtime.John Wiegley2008-04-131-2/+2
|
* (process_options): Show all register entries, even those with nullJohn Wiegley2008-04-131-1/+1
| | | | value, if -E is used.
* (config_t): Corrected a value in the register format.John Wiegley2008-04-131-2/+2
|
* (show_version): In the version page output all of the modules whichJohn Wiegley2008-04-131-5/+14
| | | | | support has been compiled in for. This will make tracking down certain problems much quicker.
* doc updatesJohn Wiegley2008-04-131-0/+6
|
* Removed the --reconcilable option, since the pending flag is now beingJohn Wiegley2008-04-131-4/+0
| | | | used.
* formatting changesJohn Wiegley2008-04-131-1/+1
|
* (export_config): Added export entries for the reconcile_balance andJohn Wiegley2008-04-131-0/+2
| | | | reconcile_date options.
* (export_config): Added missing config members for Python.John Wiegley2008-04-131-0/+3
|
* Added support for "--pager PROGRAM". A likely way to define it inJohn Wiegley2008-04-131-0/+4
| | | | your login file would be: "export LEDGER_PAGER=$PAGER".
* Added new --head and --tail options, which control how many *entries*John Wiegley2008-04-131-0/+11
| | | | | | are displayed in a register report or print report. The UNIX commands "head" and "tail" can be used to control how many transactions are displayed.