Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added option --day-break | John Wiegley | 2012-03-17 | 1 | -0/+3 |
| | |||||
* | Fixed options processing of --value-expr | John Wiegley | 2012-03-09 | 1 | -2/+5 |
| | |||||
* | Added --value-expr option | John Wiegley | 2012-03-09 | 1 | -0/+2 |
| | |||||
* | Added int and str value expression functions | John Wiegley | 2012-03-09 | 1 | -0/+19 |
| | |||||
* | Allow --options to be added by the user in Python | John Wiegley | 2012-03-01 | 1 | -0/+2 |
| | |||||
* | Started writing Python unit tests | John Wiegley | 2012-03-01 | 1 | -3/+36 |
| | |||||
* | Refactored the notion of "the current parsing context" | John Wiegley | 2012-03-01 | 1 | -6/+25 |
| | |||||
* | Increased file copyrights to 2012 | John Wiegley | 2012-02-29 | 1 | -1/+1 |
| | |||||
* | --explicit wasn't being handled correctly | John Wiegley | 2012-02-27 | 1 | -1/+3 |
| | |||||
* | Added --check-payees option | John Wiegley | 2012-02-27 | 1 | -0/+3 |
| | |||||
* | Added new account/payee/commodity directives | John Wiegley | 2012-02-27 | 1 | -0/+13 |
| | | | | | Also added supporting options: --explicit, --permissive, --pedantic, as well as new behavior for --strict. | ||||
* | Cleanup whitespace | John Wiegley | 2011-08-18 | 1 | -1/+1 |
| | |||||
* | Support Boost 1.46 and Boost.Filesystem v3 | John Wiegley | 2011-02-28 | 1 | -1/+2 |
| | |||||
* | Increase display precision of hours to 2 places | John Wiegley | 2010-12-12 | 1 | -1/+1 |
| | |||||
* | Transactions no longer needed for budget/forecast | John Wiegley | 2010-06-20 | 1 | -4/+6 |
| | | | | | This means you can forecast or budget against a file containing only periodic transactions. | ||||
* | Added initial implementation of lot_*() functions | John Wiegley | 2010-06-14 | 1 | -1/+34 |
| | |||||
* | Revised how Ledger handles the "current year" | John Wiegley | 2010-06-14 | 1 | -3/+1 |
| | | | | | Now when the Y directive sets the current year for a region, it affects everything, as if the clock really were set back to that year. | ||||
* | Restored min() and max() virtual functions | John Wiegley | 2010-06-13 | 1 | -0/+18 |
| | |||||
* | Completely reworked argument passing in expressions | John Wiegley | 2010-06-13 | 1 | -4/+3 |
| | |||||
* | Added a new scope_value() inline helper function | John Wiegley | 2010-06-13 | 1 | -4/+2 |
| | |||||
* | account(NAME) function can lookup account objects | John Wiegley | 2010-06-13 | 1 | -2/+25 |
| | | | | | | For example, just the word "account" returns the name of the current posting's account, but account("Expenses:Food") returns the actual account object, so that it's total may be accessed. | ||||
* | Untabified all source files | John Wiegley | 2010-06-11 | 1 | -24/+24 |
| | |||||
* | Changed --european option to --decimal-comma | John Wiegley | 2010-06-01 | 1 | -3/+1 |
| | | | | Fixes #211 / 1736ACA5-5DE6-4826-AEB4-DB5B2A2217AC | ||||
* | Updated copyrights to 2003-2010 | John Wiegley | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | Many improvements to Ledger's Python bindings | John Wiegley | 2009-11-19 | 1 | -2/+2 |
| | |||||
* | session_t now holds a std::auto_prt<journal_t> | John Wiegley | 2009-11-12 | 1 | -3/+3 |
| | |||||
* | Don't use archive_t if boost_serialization unavailable | John Wiegley | 2009-11-06 | 1 | -0/+4 |
| | |||||
* | Renamed --set-reported-account to just --account | John Wiegley | 2009-11-06 | 1 | -5/+5 |
| | | | | | | | This fits better with the --amount and --total options, which both change the amount and total used for calculation. Same with --account: it happens after filtering, but before calculation so that balance reports look as you'd expect. | ||||
* | The binary cache is working again | John Wiegley | 2009-11-06 | 1 | -11/+1 |
| | |||||
* | Moved journal reading code into journal_t | John Wiegley | 2009-11-05 | 1 | -41/+5 |
| | |||||
* | Moved xdata clearing code into each type proper | John Wiegley | 2009-11-05 | 1 | -19/+0 |
| | |||||
* | Segregated symbols into 5 separate namespaces | John Wiegley | 2009-11-04 | 1 | -13/+16 |
| | | | | | | | | | | | | | | | | | | | | | The different namespaces are: Function Value expression functions, which receive a "context" Option Command-line options Precommand Commands which are invoked before reading the journal Command Commands which are invoked after reading the journal Directive Directives that occur at column 0 in a data file This greatly eases the ability for Python uses to add intercept hooks to change how the basic Ledger module functions. An example of what should be possible soon: import ledger def my_foo_handler(value): print "--foo received:", value ledger.add_handler(ledger.Option, "foo=", my_foo_handler) | ||||
* | Removed an unnecessary comment | John Wiegley | 2009-11-03 | 1 | -3/+0 |
| | |||||
* | Added a --european flag, to use commas for decimals | John Wiegley | 2009-11-02 | 1 | -0/+3 |
| | | | | | | Ledger can often figure this out for itself, but this flag just makes it the default behavior. It is meant to be added to one's ~/.ledgerrc file. | ||||
* | Improved archive header logic for cache files | John Wiegley | 2009-11-01 | 1 | -1/+3 |
| | |||||
* | Removed most #if 0 blocks and callout comments | John Wiegley | 2009-10-31 | 1 | -2/+0 |
| | |||||
* | Don't add price_db to sources if it doesn't exist | John Wiegley | 2009-10-31 | 1 | -3/+5 |
| | |||||
* | Create a --cache option, for using a binary cache | John Wiegley | 2009-10-31 | 1 | -29/+69 |
| | |||||
* | Moved ownership of master account into journal_t | John Wiegley | 2009-10-30 | 1 | -49/+7 |
| | | | | The journal_t now completely represents the data part of a session. | ||||
* | Added serialization methods for most type | John Wiegley | 2009-10-30 | 1 | -0/+20 |
| | | | | | This allows journal_t objects to be completed serialized to disk and deserialized. | ||||
* | Setting --date-format in ~/.ledgerrc works again | John Wiegley | 2009-10-29 | 1 | -5/+7 |
| | |||||
* | The default ledger file is now ~/.ledger | John Wiegley | 2009-10-28 | 1 | -2/+10 |
| | |||||
* | Rewrote the way date and time I/O is managed | John Wiegley | 2009-10-25 | 1 | -0/+2 |
| | |||||
* | Split commodity.h/cc into three files | John Wiegley | 2009-06-24 | 1 | -0/+1 |
| | | | | | | commodity.h - code for commodity_t annotate.h - commodity annotations pool.h - commodity pool management | ||||
* | Restored --download, although not done yet | John Wiegley | 2009-06-24 | 1 | -4/+8 |
| | | | | | | The problem at this point is that it's recording prices in the price database multiple times; it should only need to download a price for each commodity once per day. | ||||
* | Restored --percent option, added baseline test | John Wiegley | 2009-06-21 | 1 | -0/+6 |
| | |||||
* | When --end is used, set a "terminus" date | John Wiegley | 2009-06-16 | 1 | -15/+0 |
| | | | | | | | This means that final balance valuations (with -V or -X) will be done in terms of the date given to --end, rather than based on the current day. Fixes 647D5DB9-DBBB-47C8-80CE-F3F70E3B0253 | ||||
* | Added new debug option --options | John Wiegley | 2009-06-02 | 1 | -2/+2 |
| | | | | | This reports which options are in place before invoking a command, and where exactly each option value came from. | ||||
* | Enabled use of pre-compiled headers by default | John Wiegley | 2009-03-10 | 1 | -0/+2 |
| | |||||
* | Changed the way that account balances are computed | John Wiegley | 2009-03-06 | 1 | -1/+6 |
| |