Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Implemented annotated_commodity_t::find_price | John Wiegley | 2012-03-06 | 2 | -4/+70 | |
| | | | | | Most specifically, it now respects a valuation expression associated with the commodity. | |||||
* | Made commodity_t::find_price a virtual function | John Wiegley | 2012-03-06 | 1 | -3/+3 | |
| | ||||||
* | Changed the category of a few DEBUG statements | John Wiegley | 2012-03-06 | 2 | -6/+8 | |
| | ||||||
* | Add support for valuation expressions on commodities | John Wiegley | 2012-03-05 | 6 | -96/+98 | |
| | ||||||
* | Make exprbase_t::text() a const member function | John Wiegley | 2012-03-05 | 1 | -1/+1 | |
| | ||||||
* | Generalized function call parsing | John Wiegley | 2012-03-05 | 3 | -23/+45 | |
| | | | | | | Directly calling a lambda now works: (x -> x + 10)(10) => 20 | |||||
* | Simplified Python import in a journal file | John Wiegley | 2012-03-05 | 2 | -7/+51 | |
| | ||||||
* | Rewrote the way annotated commodities are managed | John Wiegley | 2012-03-05 | 5 | -131/+110 | |
| | | | | | The new scheme should be much more efficient, and allows for future growth of what annotations may appear on a commodity. | |||||
* | Added (disabled) code to stop sorting generated balancing postings | John Wiegley | 2012-03-05 | 1 | -3/+25 | |
| | ||||||
* | Added some DEBUG statements | John Wiegley | 2012-03-05 | 1 | -0/+2 | |
| | ||||||
* | Added annotation_t::operator<() | John Wiegley | 2012-03-05 | 2 | -0/+29 | |
| | ||||||
* | Removed an invalid assertion | John Wiegley | 2012-03-05 | 1 | -1/+4 | |
| | ||||||
* | Use unique_ptr instead of std::auto_ptr | John Wiegley | 2012-03-05 | 9 | -17/+17 | |
| | ||||||
* | Prettified some code in report.cc | John Wiegley | 2012-03-05 | 1 | -84/+55 | |
| | ||||||
* | When deleting a post from an xact, remove it from its account | John Wiegley | 2012-03-05 | 1 | -0/+2 | |
| | ||||||
* | Look for valgrind in /opt/local/bin also | John Wiegley | 2012-03-05 | 1 | -1/+1 | |
| | ||||||
* | Added boost::noncopyable to format_t and format_t::element_t | John Wiegley | 2012-03-05 | 1 | -4/+3 | |
| | ||||||
* | Guard against double-freeing of report objects | John Wiegley | 2012-03-05 | 2 | -34/+59 | |
| | ||||||
* | Guarded a call to add_or_set_value | John Wiegley | 2012-03-05 | 1 | -1/+2 | |
| | ||||||
* | Added an assert | John Wiegley | 2012-03-05 | 1 | -0/+2 | |
| | ||||||
* | Make copying of format_t objects memory-safe | John Wiegley | 2012-03-05 | 2 | -16/+4 | |
| | ||||||
* | Don't copy the next pointer in element_t's copy ctor | John Wiegley | 2012-03-05 | 1 | -2/+1 | |
| | ||||||
* | Create a FGraph each time a lookup is done | John Wiegley | 2012-03-05 | 2 | -16/+40 | |
| | ||||||
* | Corrected copy of format_t objects | John Wiegley | 2012-03-05 | 2 | -3/+13 | |
| | | | | Copying of sub-elements was causing pointer overlap. | |||||
* | The last test is closer to working now | John Wiegley | 2012-03-05 | 2 | -15/+24 | |
| | ||||||
* | All tests are working again but one | John Wiegley | 2012-03-05 | 11 | -168/+318 | |
| | ||||||
* | Implemented first cut at price conversion logic | John Wiegley | 2012-03-05 | 6 | -74/+119 | |
| | ||||||
* | Changes to get all the code to compile | John Wiegley | 2012-03-05 | 5 | -56/+64 | |
| | ||||||
* | Switched to using Boost.Graph for commodity pricing | John Wiegley | 2012-03-05 | 11 | -604/+476 | |
| | ||||||
* | Make --value a synonym for market | John Wiegley | 2012-03-05 | 1 | -1/+1 | |
| | ||||||
* | Make --change a synonym for --gain | John Wiegley | 2012-03-05 | 1 | -1/+1 | |
| | ||||||
* | Fixed invocation of lambda expressions | John Wiegley | 2012-03-05 | 4 | -8/+27 | |
| | | | | | | | | | foo = x, y, z -> print(x, y, z) foo(1, 2, 3) However, this still does not work: (x, y, z -> print(x, y, z))(1, 2, 3) | |||||
* | Improvements to format parsing | John Wiegley | 2012-03-02 | 1 | -98/+172 | |
| | | | | Fixes #337 | |||||
* | Removed an old comment | John Wiegley | 2012-03-02 | 1 | -3/+0 | |
| | ||||||
* | Proof both the Python and non-Python variants | John Wiegley | 2012-03-02 | 1 | -2/+6 | |
| | ||||||
* | Make sure Python works during proof builds | John Wiegley | 2012-03-02 | 1 | -5/+4 | |
| | ||||||
* | Build Python support during proof builds | John Wiegley | 2012-03-02 | 1 | -1/+1 | |
| | ||||||
* | Removed unneeded code | John Wiegley | 2012-03-02 | 1 | -2/+0 | |
| | ||||||
* | Use Clang to do proof builds | John Wiegley | 2012-03-02 | 1 | -1/+1 | |
| | ||||||
* | This now works: ledger --import os eval 'os.path.isdir("/tmp")' | John Wiegley | 2012-03-02 | 4 | -78/+135 | |
| | ||||||
* | Update lib/Makefile for Boost 1.49 | John Wiegley | 2012-03-01 | 1 | -8/+6 | |
| | ||||||
* | Allow --options to be added by the user in Python | John Wiegley | 2012-03-01 | 8 | -4/+42 | |
| | ||||||
* | Provide more context if a valexpr function call fails | John Wiegley | 2012-03-01 | 1 | -5/+12 | |
| | ||||||
* | Added more baseline testing, for valexprs and Python | John Wiegley | 2012-03-01 | 3 | -3/+32 | |
| | ||||||
* | Re-enabled some necessary code | John Wiegley | 2012-03-01 | 1 | -2/+0 | |
| | ||||||
* | Propagate out parsing context counts | John Wiegley | 2012-03-01 | 1 | -3/+15 | |
| | ||||||
* | Makefile fix | John Wiegley | 2012-03-01 | 1 | -1/+1 | |
| | ||||||
* | Fixed a typo | John Wiegley | 2012-03-01 | 1 | -1/+1 | |
| | ||||||
* | Fixed an explicit path within a unit test | John Wiegley | 2012-03-01 | 1 | -1/+1 | |
| | ||||||
* | Was missing an assignment of context.scope | John Wiegley | 2012-03-01 | 1 | -0/+2 | |
| |