| Commit message (Expand) | Author | Age | Files | Lines |
* | using main.py is now only 50% slower than using main.cc | John Wiegley | 2004-09-14 | 4 | -24/+57 |
* | main.py does everything except balance reports now | John Wiegley | 2004-09-14 | 5 | -23/+57 |
* | main.py now implements nearly all the functionality of main.cc | John Wiegley | 2004-09-14 | 5 | -151/+228 |
* | further python integration improvements | John Wiegley | 2004-09-14 | 3 | -7/+29 |
* | make config_t visible to Python; almost possible to implement main.cc in main.py | John Wiegley | 2004-09-14 | 13 | -67/+205 |
* | ledger.so can now call back to functions in the calling interpretor (see main... | John Wiegley | 2004-09-14 | 4 | -9/+18 |
* | added more math operators for value_t types | John Wiegley | 2004-09-14 | 3 | -10/+38 |
* | python integrated both ways (see sample.dat), and initialized on-demand | John Wiegley | 2004-09-14 | 13 | -73/+296 |
* | improvements to python exposure of commodity_t | John Wiegley | 2004-09-11 | 4 | -12/+32 |
* | added support for ValueExpr objects to python. | John Wiegley | 2004-09-10 | 5 | -8/+50 |
* | added python support for Format() objects. see main.py | John Wiegley | 2004-09-10 | 4 | -18/+27 |
* | interval_t objects now play nicely with python. see the bottom of main.py | John Wiegley | 2004-09-10 | 10 | -64/+141 |
* | change commodity->symbol to const, and added set_symbol | John Wiegley | 2004-09-10 | 5 | -28/+39 |
* | slight changed semantics of item_handler<T>, to play better with Boost.Python | John Wiegley | 2004-09-10 | 4 | -43/+66 |
* | removed todo item | John Wiegley | 2004-09-10 | 0 | -0/+0 |
* | Python fixes; starting adding support for using item_handlers in python | John Wiegley | 2004-09-08 | 6 | -2/+170 |
* | balances and values can now be iterated, to get at the component amounts | John Wiegley | 2004-09-08 | 4 | -6/+108 |
* | optimize python iterations of entries, transactions; use exceptions more | John Wiegley | 2004-09-08 | 7 | -87/+93 |
* | setup_ledger.py needs to link against libgmp | John Wiegley | 2004-09-08 | 2 | -5/+4 |
* | made value_t into a more complete type. amounts.py now works. | John Wiegley | 2004-09-08 | 3 | -3/+178 |
* | some fixes to value_t in python; still more work to go | John Wiegley | 2004-09-07 | 3 | -2/+28 |
* | some python code fixes | John Wiegley | 2004-09-07 | 1 | -15/+12 |
* | cleaned out fixed items | John Wiegley | 2004-09-07 | 0 | -0/+0 |
* | modified entry_t::add_transaction and remove_transaction, since now using lists | John Wiegley | 2004-09-06 | 1 | -21/+3 |
* | changed constructors to downgrade BALANCE and BALANCE_PAIR types when possible | John Wiegley | 2004-09-06 | 1 | -2/+3 |
* | switch from using deque back to list; affects speed by up to 30%! | John Wiegley | 2004-09-06 | 8 | -31/+45 |
* | small fixes | John Wiegley | 2004-08-30 | 2 | -3/+10 |
* | removed an older python file | John Wiegley | 2004-08-29 | 1 | -15/+0 |
* | added some more python files | John Wiegley | 2004-08-29 | 5 | -0/+57 |
* | the amount/balance/value logic is now a library, completely separate from ledger | John Wiegley | 2004-08-29 | 23 | -536/+613 |
* | redid the way amount_t::commodity is handled; no more direct access | John Wiegley | 2004-08-29 | 15 | -226/+225 |
* | a bit of a reorg; still much more to go | John Wiegley | 2004-08-29 | 11 | -572/+685 |
* | removed the "standalone" flag (unsafe with Boost) | John Wiegley | 2004-08-28 | 4 | -61/+31 |
* | ledger.so (the python module) now builds based on autoconf discovery | John Wiegley | 2004-08-28 | 14 | -57/+180 |
* | added python.cc | John Wiegley | 2004-08-27 | 1 | -0/+29 |
* | Added rule to install header files | John Wiegley | 2004-08-27 | 1 | -0/+20 |
* | added (disabled) code for Boost.Python | John Wiegley | 2004-08-27 | 20 | -238/+730 |
* | use libtool, for making shared libraries | John Wiegley | 2004-08-26 | 3 | -10/+13 |
* | added README file | John Wiegley | 2004-08-26 | 1 | -0/+69 |
* | added check for --enable-standalone, as mentioned in the README | John Wiegley | 2004-08-26 | 3 | -8/+29 |
* | remove -mdynamic-no-pic from opt flags; that is implied by -fast | John Wiegley | 2004-08-26 | 1 | -1/+1 |
* | added "acprep --perf", for doing performance analysis | John Wiegley | 2004-08-26 | 1 | -0/+3 |
* | read all binary data in at one go; gains 33% | John Wiegley | 2004-08-26 | 4 | -110/+181 |
* | don't placement new() amount_t in binary.cc when it isn't necessary | John Wiegley | 2004-08-26 | 2 | -7/+4 |
* | fixed another memory strangeness (too much destruction) | John Wiegley | 2004-08-26 | 3 | -28/+48 |
* | added usual operator | John Wiegley | 2004-08-25 | 4 | -19/+27 |
* | fixed two memory corruption bugs | John Wiegley | 2004-08-25 | 9 | -54/+110 |
* | added asserts to, and proof-read, amount.cc | John Wiegley | 2004-08-25 | 4 | -235/+239 |
* | reorganized the docs, switched to using some more appropriate @commands | John Wiegley | 2004-08-25 | 1 | -276/+125 |
* | added documentation for all of the command-line options to ledger.texi | John Wiegley | 2004-08-25 | 1 | -81/+192 |