Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Segregated symbols into 5 separate namespaces | John Wiegley | 2009-11-04 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | | | | | | | 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) | ||||
* | Whitespace fix | John Wiegley | 2009-11-04 | 1 | -2/+2 |
| | |||||
* | Stream out item metadata last in item_t::serialize | John Wiegley | 2009-11-01 | 1 | -1/+1 |
| | |||||
* | When copying an item, copy its metadata | John Wiegley | 2009-11-01 | 1 | -0/+1 |
| | |||||
* | Removed most #if 0 blocks and callout comments | John Wiegley | 2009-10-31 | 1 | -1/+0 |
| | |||||
* | Added serialization methods for most type | John Wiegley | 2009-10-30 | 1 | -0/+35 |
| | | | | | This allows journal_t objects to be completed serialized to disk and deserialized. | ||||
* | Add a position_t object for tracking item positions | John Wiegley | 2009-10-30 | 1 | -20/+39 |
| | | | | It is also optional, which is useful for generated items. | ||||
* | Fixed a comment, and some whitespace | John Wiegley | 2009-10-30 | 1 | -2/+1 |
| | |||||
* | Added a comment about a confusing bit of code | John Wiegley | 2009-10-27 | 1 | -0/+1 |
| | |||||
* | Removed reliance on strptime/strftime | John Wiegley | 2009-10-11 | 1 | -2/+4 |
| | | | | | | | | The code now uses Boost's input and output facets for times and dates. This ensures completely consistency regarding timezones and times, and fixes the regression test that was broken while I was away coding in London (where it was GMT-0 and I didn't notice the difference between local and GMT). | ||||
* | Reduced the #include dependency tree to a minimum | John Wiegley | 2009-03-04 | 1 | -1/+0 |
| | |||||
* | The Great Renaming, Part II | John Wiegley | 2009-02-23 | 1 | -7/+7 |
| | | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset. | ||||
* | Added a new --raw option, for use with print | John Wiegley | 2009-02-21 | 1 | -2/+3 |
| | |||||
* | xact metadata searches get passed up to the entry | John Wiegley | 2009-02-14 | 1 | -0/+7 |
| | | | | | | That is, if a metadata tag cannot be found in a transaction, look in the parent entry to see if it was set there. Transactions "inherit" notational details from their entries. | ||||
* | Fixed the use of --effective and --date-format (-y). | John Wiegley | 2009-02-09 | 1 | -0/+5 |
| | |||||
* | Improved an error message that was trying to show transaction context. | John Wiegley | 2009-02-08 | 1 | -1/+1 |
| | |||||
* | Greatly simplified the way option and command handlers are defined. | John Wiegley | 2009-02-05 | 1 | -2/+0 |
| | |||||
* | Removed all references to the old binary cache. | John Wiegley | 2009-02-04 | 1 | -3/+2 |
| | |||||
* | Largely removed all of Ledger's use of global variables, for the REPL's sake. | John Wiegley | 2009-02-04 | 1 | -5/+5 |
| | |||||
* | Simplified the textual parser, and improved metadata support. | John Wiegley | 2009-02-04 | 1 | -7/+1 |
| | |||||
* | Removed used of src_idx. | John Wiegley | 2009-02-03 | 1 | -12/+6 |
| | |||||
* | Removed some dead code. | John Wiegley | 2009-02-03 | 1 | -8/+0 |
| | |||||
* | Removed the global references to session->report. | John Wiegley | 2009-02-03 | 1 | -0/+2 |
| | |||||
* | Simplified error context handling. | John Wiegley | 2009-02-02 | 1 | -9/+15 |
| | |||||
* | Added support for metadata and tagging, and made regexs a first-class type. | John Wiegley | 2009-02-01 | 1 | -0/+18 |
| | |||||
* | Changed many uses of "unsigned long" to std::size_t. | John Wiegley | 2009-02-01 | 1 | -2/+6 |
| | |||||
* | Added documentation stubs for all include files and classes. | John Wiegley | 2009-01-31 | 1 | -0/+19 |
| | |||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 |
| | |||||
* | Changed some of the transaction flags, since all must fit in 8 bits. | John Wiegley | 2008-09-19 | 1 | -10/+4 |
| | |||||
* | Factored common parts of entry_t and xact_t into new item_t | John Wiegley | 2008-09-19 | 1 | -0/+135 |