| Commit message (Expand) | Author | Age | Files | Lines |
* | Re-enabled some code, and removed a bunch of deadwood. | John Wiegley | 2009-02-12 | 10 | -82/+19 |
* | Fixed a typo which was causing all boolean values to show as "false". | John Wiegley | 2009-02-12 | 1 | -5/+5 |
* | Added validation code for mask_t objects. | John Wiegley | 2009-02-12 | 3 | -0/+14 |
* | Added a missing file! | John Wiegley | 2009-02-12 | 1 | -0/+95 |
* | Moved value_t::set_type into value.cc, since it had grown. | John Wiegley | 2009-02-12 | 2 | -18/+21 |
* | Inlined value_t::_clear(), since it only had one caller. | John Wiegley | 2009-02-12 | 1 | -17/+9 |
* | Ignore lines in Ledger files which contain only whitespace. | John Wiegley | 2009-02-12 | 1 | -1/+1 |
* | Removed an excessive error check. | John Wiegley | 2009-02-12 | 1 | -3/+0 |
* | Properly handle UTF-8 characters in commodity strings. | John Wiegley | 2009-02-12 | 9 | -100/+112 |
* | Allow the use of days of the week to "entry", e.g: "thu kfc 11". | John Wiegley | 2009-02-11 | 1 | -1/+32 |
* | In ledger-mode, if TAB is pressed in an entry, call out to "entry". | John Wiegley | 2009-02-11 | 1 | -7/+26 |
* | Rewrote the "entry" command. It's ALIVE! | John Wiegley | 2009-02-11 | 7 | -174/+359 |
* | Wired up the "entry" command from 2.x, though it still needs to be ported. | John Wiegley | 2009-02-10 | 7 | -105/+72 |
* | A fix to the last fix. | John Wiegley | 2009-02-10 | 1 | -1/+0 |
* | A fix for users of Boost 1.35. | John Wiegley | 2009-02-10 | 1 | -2/+17 |
* | Wrote the beginnings of a new "stats" command. | John Wiegley | 2009-02-10 | 3 | -0/+71 |
* | option_t's copy constructor wasn't copying "wants_arg". | John Wiegley | 2009-02-10 | 1 | -1/+5 |
* | Removed an unneeded method declaration. | John Wiegley | 2009-02-10 | 1 | -1/+0 |
* | Sort period transactions by "date", not by "d". | John Wiegley | 2009-02-10 | 1 | -1/+1 |
* | Changed value_t to use boost::any (more type-safe). | John Wiegley | 2009-02-10 | 2 | -239/+103 |
* | If a textual directive can't be found, ignore it. | John Wiegley | 2009-02-10 | 1 | -0/+4 |
* | Break libledger_data's dependency on session_t. | John Wiegley | 2009-02-09 | 4 | -32/+35 |
* | When -V is used, show the market value for the amount as well as the total. | John Wiegley | 2009-02-09 | 1 | -0/+1 |
* | Exclude | from the legal commodity character set, as per the comment. | John Wiegley | 2009-02-09 | 1 | -1/+1 |
* | Fix to handling of effective dates in xact_t::date(). | John Wiegley | 2009-02-09 | 1 | -3/+9 |
* | Fixed the operator precedence of several operators. | John Wiegley | 2009-02-09 | 1 | -100/+115 |
* | Removed reference to session_t from the iterators module. | John Wiegley | 2009-02-09 | 5 | -35/+37 |
* | Fixed the use of --effective and --date-format (-y). | John Wiegley | 2009-02-09 | 7 | -50/+52 |
* | For the "parse" pre-command, provide a sample transaction context. | John Wiegley | 2009-02-09 | 1 | -4/+26 |
* | Join command-line arguments before handling pre-commands. | John Wiegley | 2009-02-09 | 1 | -26/+29 |
* | Fixed a case where adding an amount to an integer failed. | John Wiegley | 2009-02-09 | 1 | -0/+4 |
* | Added a new --collapse-if-zero option. | John Wiegley | 2009-02-09 | 5 | -6/+28 |
* | Don't apply an automated entry to a generated transaction. | John Wiegley | 2009-02-09 | 1 | -3/+2 |
* | Was failing to copy over the xact's assigned_amount when copy constructing. | John Wiegley | 2009-02-09 | 1 | -0/+1 |
* | Removed the balance_pair_t type, since it's now an unneeded abstraction. | John Wiegley | 2009-02-09 | 7 | -758/+11 |
* | Use the report's amount_expr everywhere that computes an xact's amount. | John Wiegley | 2009-02-09 | 8 | -57/+54 |
* | Recompile the amount_expr before summing account totals. | John Wiegley | 2009-02-09 | 3 | -3/+17 |
* | Corrected a problem with parsing parens in argument query expressions. | John Wiegley | 2009-02-09 | 1 | -6/+12 |
* | Always calculate transaction totals based on the expression for the amount. | John Wiegley | 2009-02-09 | 1 | -6/+2 |
* | Include boost/version.hpp, so Ledger can tell which version the user has. | John Wiegley | 2009-02-09 | 1 | -0/+1 |
* | Had to step back from a change that was breaking regular reports. | John Wiegley | 2009-02-09 | 3 | -3/+15 |
* | Added a now-missing #include of "account.h". | John Wiegley | 2009-02-09 | 1 | -0/+1 |
* | Removed unnecessary #include directives. | John Wiegley | 2009-02-09 | 2 | -2/+0 |
* | Revert "If a valexpr identifier is unknown at calc time, re-compile at that p... | John Wiegley | 2009-02-09 | 1 | -5/+2 |
* | If a valexpr identifier is unknown at calc time, re-compile at that point. | John Wiegley | 2009-02-09 | 1 | -2/+5 |
* | Fixed an issue where --amount EXPR wasn't seeing that it had been "handled". | John Wiegley | 2009-02-09 | 1 | -4/+9 |
* | Conditionalized some boost::filesystem calls that were too new. | John Wiegley | 2009-02-09 | 1 | -0/+4 |
* | Pass amount expression to calc_xacts, to be used for computing the total. | John Wiegley | 2009-02-08 | 4 | -6/+13 |
* | Fixes to the new Python/scope integration code. | John Wiegley | 2009-02-08 | 1 | -0/+7 |
* | Moved get_partial_name from format.cc into account_t, where it belongs. | John Wiegley | 2009-02-08 | 4 | -42/+28 |