Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Corrected several compile and link problems | John Wiegley | 2012-03-06 | 1 | -0/+1 |
| | |||||
* | This now works: ledger --import os eval 'os.path.isdir("/tmp")' | John Wiegley | 2012-03-02 | 1 | -57/+86 |
| | |||||
* | Allow --options to be added by the user in Python | John Wiegley | 2012-03-01 | 1 | -1/+10 |
| | |||||
* | Fixes to value_t to Python conversion | John Wiegley | 2012-03-01 | 1 | -5/+3 |
| | |||||
* | Added a new 'python' directive | John Wiegley | 2012-03-01 | 1 | -24/+53 |
| | |||||
* | Use filesystem::complete not absolute with Boost < 1.46 | John Wiegley | 2012-03-01 | 1 | -0/+4 |
| | |||||
* | Started writing Python unit tests | John Wiegley | 2012-03-01 | 1 | -0/+2 |
| | |||||
* | Refactored the notion of "the current parsing context" | John Wiegley | 2012-03-01 | 1 | -7/+28 |
| | |||||
* | Increased file copyrights to 2012 | John Wiegley | 2012-02-29 | 1 | -1/+1 |
| | |||||
* | Fixed Python initialization problem with --import | John Wiegley | 2012-02-29 | 1 | -10/+12 |
| | |||||
* | Cleanup whitespace | John Wiegley | 2011-08-18 | 1 | -5/+5 |
| | |||||
* | Support Boost 1.46 and Boost.Filesystem v3 | John Wiegley | 2011-02-28 | 1 | -1/+7 |
| | |||||
* | Completely reworked argument passing in expressions | John Wiegley | 2010-06-13 | 1 | -1/+1 |
| | |||||
* | Untabified all source files | John Wiegley | 2010-06-11 | 1 | -54/+54 |
| | |||||
* | Updated copyrights to 2003-2010 | John Wiegley | 2010-03-05 | 1 | -1/+1 |
| | |||||
* | Added another catch handler for Python exceptions | John Wiegley | 2009-11-14 | 1 | -0/+4 |
| | |||||
* | Reordered the export_ calls in pyinterp.cc | John Wiegley | 2009-11-12 | 1 | -6/+6 |
| | |||||
* | Fixes to Python importing; removed "hello" precommand | John Wiegley | 2009-11-10 | 1 | -45/+124 |
| | |||||
* | Check for Python options before functions | John Wiegley | 2009-11-08 | 1 | -0/+3 |
| | |||||
* | Make sure to clean up memory after a Python exception | John Wiegley | 2009-11-07 | 1 | -2/+12 |
| | |||||
* | Python vars of unconvertable type return NULL_VALUE | John Wiegley | 2009-11-07 | 1 | -7/+0 |
| | |||||
* | Simplified passing of scope objects in Python | John Wiegley | 2009-11-05 | 1 | -40/+63 |
| | |||||
* | Segregated symbols into 5 separate namespaces | John Wiegley | 2009-11-04 | 1 | -22/+24 |
| | | | | | | | | | | | | | | | | | | | | | 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 several unneeded Python interface files | John Wiegley | 2009-11-04 | 1 | -10/+4 |
| | |||||
* | Changed two callout comments | John Wiegley | 2009-11-03 | 1 | -1/+1 |
| | |||||
* | Added Python interface for account_t | John Wiegley | 2009-11-03 | 1 | -0/+2 |
| | |||||
* | Renamed Python global "session" to "current_session" | John Wiegley | 2009-11-02 | 1 | -1/+1 |
| | |||||
* | Fixed many compiler warnings from g++ 4.4 | John Wiegley | 2009-10-25 | 1 | -1/+1 |
| | |||||
* | Enabled use of pre-compiled headers by default | John Wiegley | 2009-03-10 | 1 | -0/+2 |
| | |||||
* | Disabled warning on not finding ledger/__init__.py | John Wiegley | 2009-03-09 | 1 | -1/+4 |
| | | | | | This warning is completely harmless, and was downgraded to a debug message. | ||||
* | Fixed a few minor cases of uninitialized variables | John Wiegley | 2009-03-08 | 1 | -2/+2 |
| | |||||
* | Added a "python" command, which invokes Py_Main | John Wiegley | 2009-03-03 | 1 | -0/+41 |
| | |||||
* | Added a warning_() macro | John Wiegley | 2009-02-26 | 1 | -3/+1 |
| | |||||
* | Marked all strings needing internationalization | John Wiegley | 2009-02-25 | 1 | -13/+12 |
| | | | | | | | | | | | | | | | | These strings are now collected automagically in the file po/ledger.pot. If you'd like to produce a translation, just run this command after building Ledger: msginit -l LOCALE -o LANG.po -i po/ledger.pot Where LOCALE is a string like de or en_GB, and LANG is a short descriptive word for your language. Then send me this .po file so I can commit it to the Ledger sources (alternatively, you could maintain the file in a fork on GitHub), and setup the build script to format and install your new message catalog during a "make install". | ||||
* | Added a new level of Python integration | John Wiegley | 2009-02-24 | 1 | -21/+77 |
| | |||||
* | Moved python/*.cc files into src/ | John Wiegley | 2009-02-24 | 1 | -0/+296 |
This is because soon, I intend to have real Python source files in python/. |