Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added the var_t helper class, which can be seen in the beginning | John Wiegley | 2008-07-21 | 1 | -8/+15 |
| | | | | implementation of register_command in main.cc. | ||||
* | Re-enabled almost all of the code in main.cc. | John Wiegley | 2008-07-20 | 1 | -26/+20 |
| | |||||
* | Things are at least compiling and linking again, but we're still far from | John Wiegley | 2008-07-20 | 1 | -4/+6 |
| | | | | having a functional binary. | ||||
* | Everything but main.cc is compiling again (but with much #if 0'd code). | John Wiegley | 2008-07-20 | 1 | -41/+16 |
| | |||||
* | I have walked further along the road less compiled by... | John Wiegley | 2008-07-20 | 1 | -3/+1 |
| | |||||
* | Brought in the final round of 3.0 code, although it does not compile yet: | John Wiegley | 2008-07-20 | 1 | -382/+316 |
| | | | | report, session, parts of xpath, main, journal, option. | ||||
* | Some basic fixes to get things almost running, although we still can't parse | John Wiegley | 2008-07-19 | 1 | -0/+8 |
| | | | | my personal ledger file yet. | ||||
* | Merged in bug fixes from master (done for 2.6.1b) | John Wiegley | 2008-07-19 | 1 | -4/+10 |
|\ | |||||
| * | Moved an auto_ptr up into main, since the memory it governs must still be | John Wiegley | 2008-07-17 | 1 | -4/+10 |
| | | | | | | | | available to the exception handlers that come immediately after it. | ||||
* | | The code is compiling again, but it's far from being able to run yet. | John Wiegley | 2008-05-08 | 1 | -23/+68 |
|/ | |||||
* | Made separate modules for the csv command, since the prior method was | John Wiegley | 2008-04-13 | 1 | -4/+4 |
| | | | | not fully correct. | ||||
* | Reworked the way date/times are handled. | John Wiegley | 2008-04-13 | 1 | -11/+5 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -3/+32 |
| | |||||
* | Several fixes to lot price handling. | John Wiegley | 2008-04-13 | 1 | -51/+57 |
| | |||||
* | Tons of corrections and fixes to value expressions and lot figures. | John Wiegley | 2008-04-13 | 1 | -5/+3 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -1/+2 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -1/+1 |
| | |||||
* | Added much better error location. | John Wiegley | 2008-04-13 | 1 | -13/+50 |
| | |||||
* | Added a DATETIME value type. | John Wiegley | 2008-04-13 | 1 | -47/+76 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -9/+11 |
| | |||||
* | Began support for improved commodity handling. | John Wiegley | 2008-04-13 | 1 | -1/+1 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -2/+0 |
| | |||||
* | Checked in all major updates. | John Wiegley | 2008-04-13 | 1 | -4/+30 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -2/+0 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -2/+13 |
| | |||||
* | Made several changes to the parsing infrastructure to allow passing | John Wiegley | 2008-04-13 | 1 | -1/+3 |
| | | | | | the "config_t" object around. This is needed for parsing option settings in the initialization file. | ||||
* | Removed Python integration support. | John Wiegley | 2008-04-13 | 1 | -30/+0 |
| | |||||
* | Added support for outputting to CSV format. | John Wiegley | 2008-04-13 | 1 | -0/+4 |
| | |||||
* | (parse_and_report): Set ledger::terminus in main.cc, instead of | John Wiegley | 2008-04-13 | 1 | -0/+4 |
| | | | | relying on static initialization of valexpr.cc. | ||||
* | Restructed the code that it can build and be used as a shared library. | John Wiegley | 2008-04-13 | 1 | -246/+49 |
| | | | | | The command-line version is still statically bound in the build process by default (for the sake of speed). | ||||
* | (parse_and_report): Added a check for HAVE_EXPAT in addition to | John Wiegley | 2008-04-13 | 1 | -3/+3 |
| | | | | | HAVE_XMLPARSE, which was causing the xml/gnucash parsers not to be registered! | ||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -1/+1 |
| | |||||
* | (chain_xact_handlers): When budgeting and forecasting are being used, | John Wiegley | 2008-04-13 | 1 | -0/+27 |
| | | | | | | | | | | never update the binary cache (and don't create one if none was there). This is because certain intermediary accounts get created during generation of these reports, which should never be recorded in the cache as actual accounts. Also, run the account filter both before and after the budgeting and forecasting filters, to ensure that only the accounts the user is interested in get included in the report. | ||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -1/+1 |
| | |||||
* | Removed the --reconcilable option, since the pending flag is now being | John Wiegley | 2008-04-13 | 1 | -9/+2 |
| | | | | used. | ||||
* | (main): Do not sync I/O streams with stdio, since I do not use stdin, | John Wiegley | 2008-04-13 | 1 | -0/+2 |
| | | | | stdout or stderr. | ||||
* | (parse_and_report): If XML support was not compiled in, generate an | John Wiegley | 2008-04-13 | 1 | -2/+6 |
| | | | | error when the "xml" command is used. | ||||
* | formatting changes | John Wiegley | 2008-04-13 | 1 | -1/+9 |
| | |||||
* | (chain_xact_handlers): Chain the reconcile_transactions handler the | John Wiegley | 2008-04-13 | 1 | -39/+27 |
| | | | | same way as everything else. | ||||
* | (parse_and_report): Rearranged some code for efficiency's sake. | John Wiegley | 2008-04-13 | 1 | -12/+14 |
| | |||||
* | Changed truncate_entries so that --head and --tail can be used at the | John Wiegley | 2008-04-13 | 1 | -3/+1 |
| | | | | same time. | ||||
* | Added support for "--pager PROGRAM". A likely way to define it in | John Wiegley | 2008-04-13 | 1 | -4/+70 |
| | | | | your login file would be: "export LEDGER_PAGER=$PAGER". | ||||
* | (chain_xact_handlers): Added head or tail handlers, using the | John Wiegley | 2008-04-13 | 1 | -0/+8 |
| | | | | transaction handler `truncate_entries'. | ||||
* | Fixed a Gnucash problem. | John Wiegley | 2008-04-13 | 1 | -6/+2 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -1/+1 |
| | |||||
* | Added an Emacs formatter, accessible with the new "emacs" command. | John Wiegley | 2008-04-13 | 1 | -16/+43 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -2/+9 |
| | |||||
* | *** empty log message *** | John Wiegley | 2008-04-13 | 1 | -1/+5 |
| | |||||
* | Added preliminary support for OFX, using libofx. Needs much | John Wiegley | 2008-04-13 | 1 | -2/+12 |
| | | | | real-world testing. | ||||
* | (parse_and_report): Added new "reconcile" and "output" commands. | John Wiegley | 2008-04-13 | 1 | -1/+11 |
| | | | | | Likely not to be documented, as these are intended primarily for future GUI development. |