summaryrefslogtreecommitdiff
path: root/src/py_value.cc
Commit message (Collapse)AuthorAgeFilesLines
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Fixed Ledger/Python byte vs. char Unicode bridgeJohn Wiegley2009-11-201-11/+18
|
* Normalized the value() method for Python numericsJohn Wiegley2009-11-201-0/+17
|
* Many improvements to Ledger's Python bindingsJohn Wiegley2009-11-191-19/+20
|
* Value.to_sequence returns a valid Python sequenceJohn Wiegley2009-11-111-0/+4
|
* Added floored() and in_place_floor() methodsJohn Wiegley2009-11-111-0/+2
|
* Value.basetype in Python returns a Value's base typeJohn Wiegley2009-11-111-0/+18
|
* Report sought magnitude when balancing errors occurJohn Wiegley2009-11-051-0/+2
|
* Simplified usage of Boost.Python in several casesJohn Wiegley2009-11-051-1/+3
|
* Segregated symbols into 5 separate namespacesJohn Wiegley2009-11-041-1/+1
| | | | | | | | | | | | | | | | | | | | | 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)
* Changed two callout commentsJohn Wiegley2009-11-031-2/+2
|
* Whitespace fixJohn Wiegley2009-11-031-1/+1
|
* Completed Python bindings for value_tJohn Wiegley2009-11-021-75/+97
|
* Removed most #if 0 blocks and callout commentsJohn Wiegley2009-10-311-2/+0
|
* Change the value_t::POINTER type to value_t::SCOPEJohn Wiegley2009-10-301-3/+3
| | | | | scope_t pointers are the only kind that are ever stored in value objects, so there was no need to make it generic and use boost::any.
* Split commodity.h/cc into three filesJohn Wiegley2009-06-241-0/+1
| | | | | | commodity.h - code for commodity_t annotate.h - commodity annotations pool.h - commodity pool management
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* Reduced the #include dependency tree to a minimumJohn Wiegley2009-03-041-1/+1
|
* Marked all strings needing internationalizationJohn Wiegley2009-02-251-1/+1
| | | | | | | | | | | | | | | | 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".
* Moved python/*.cc files into src/John Wiegley2009-02-241-0/+304
This is because soon, I intend to have real Python source files in python/.