Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Don't store the amount expression object in transactions. | John Wiegley | 2009-02-03 | 1 | -5/+27 | |
| | | | | This is unnecessary since binary caching is no longer being used. | |||||
* | Removed used of src_idx. | John Wiegley | 2009-02-03 | 1 | -4/+3 | |
| | ||||||
* | A little code rearranging. | John Wiegley | 2009-02-03 | 1 | -14/+14 | |
| | ||||||
* | Implemented a text parsing optimization. | John Wiegley | 2009-02-03 | 1 | -44/+55 | |
| | | | | | | | | Amounts, costs and assigned amounts are now parsed as regular amounts. To have a full value expression at any of those positions, surround it with parentheses. The reason for this is that the amount parser is far simpler and quicker -- and by far the common case -- compared to the full expression parser. | |||||
* | Corrected a display error when showing error context. | John Wiegley | 2009-02-03 | 1 | -3/+8 | |
| | ||||||
* | Removed report_error() function and reordered context for parsing errors. | John Wiegley | 2009-02-02 | 1 | -1/+5 | |
| | ||||||
* | Simplified error context handling. | John Wiegley | 2009-02-02 | 1 | -130/+120 | |
| | ||||||
* | Added support for metadata and tagging, and made regexs a first-class type. | John Wiegley | 2009-02-01 | 1 | -7/+19 | |
| | ||||||
* | Changed many uses of "unsigned long" to std::size_t. | John Wiegley | 2009-02-01 | 1 | -3/+3 | |
| | ||||||
* | Fixed error context output. | John Wiegley | 2009-01-31 | 1 | -2/+2 | |
| | ||||||
* | Whitespace fix. | John Wiegley | 2009-01-30 | 1 | -3/+3 | |
| | ||||||
* | Fixed some tracing labels. | John Wiegley | 2009-01-30 | 1 | -0/+1 | |
| | ||||||
* | Refactored the textual parser, to allow easy extensions in Python. | John Wiegley | 2009-01-29 | 1 | -519/+589 | |
| | ||||||
* | Revised the way that parsing flags get passed around. | John Wiegley | 2009-01-29 | 1 | -6/+7 | |
| | ||||||
* | Switched over to using irrxml for parsing XML, rather than expat. | John Wiegley | 2009-01-24 | 1 | -7/+3 | |
| | ||||||
* | Added support for Unicode text in Ledger files, thanks to 'utfcpp', which can | John Wiegley | 2009-01-23 | 1 | -8/+20 | |
| | | | | be located at http://utfcpp.sourceforge.net. | |||||
* | Moved the occurance of "Error:" when reporting context. | John Wiegley | 2009-01-22 | 1 | -2/+2 | |
| | ||||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 | |
| | ||||||
* | Instead of doing price annotations in the textual parser, use | John Wiegley | 2009-01-19 | 1 | -3/+2 | |
| | | | | commodity_t::exchange. | |||||
* | Changed COMMODITY_STYLE_NOMARKET TO COMMODITY_NOMARKET. | John Wiegley | 2009-01-19 | 1 | -1/+1 | |
| | ||||||
* | Whitespace fix. | John Wiegley | 2009-01-14 | 1 | -4/+4 | |
| | ||||||
* | The cleared or pending flag of a transaction overrides the flag for the entire | John Wiegley | 2009-01-14 | 1 | -1/+3 | |
| | | | | entry only if it is "more" cleared. | |||||
* | Changed debug class ledger.textual.parse to just textual.parse. | John Wiegley | 2008-09-19 | 1 | -21/+21 | |
| | ||||||
* | Removed unneeded NULL argument. | John Wiegley | 2008-09-19 | 1 | -1/+1 | |
| | ||||||
* | Renamed XACT_BALANCE flag to XACT_MUST_BALANCE. | John Wiegley | 2008-09-19 | 1 | -1/+1 | |
| | ||||||
* | When automatically associating lot details with a commodity, use only the | John Wiegley | 2008-09-19 | 1 | -8/+2 | |
| | | | | | | price (based on the cost of the transactions), don't automatically use the date and the entry code -- since most people aren't going to be that specific at the time of sale, it's causes confusion in certain cases. | |||||
* | Factored common parts of entry_t and xact_t into new item_t | John Wiegley | 2008-09-19 | 1 | -16/+16 | |
| | ||||||
* | Fixed the way that nested caught exceptions are rethrown, and how value | John Wiegley | 2008-09-15 | 1 | -4/+4 | |
| | | | | expressions are displayed when errors are found in them. | |||||
* | If an entry is being parsed but yields all null-amount transactions, | John Wiegley | 2008-09-14 | 1 | -4/+10 | |
| | | | | | | completely ignore the entry. This is useful for supporting "safety" entries whose only purpose is to assert the balance of account(s) at a certain point in time. | |||||
* | Transactional assignments (i.e., confirmed balances) are working now. | John Wiegley | 2008-09-14 | 1 | -29/+36 | |
| | ||||||
* | Ledger now builds without any significant warnings, except for one file. Some | John Wiegley | 2008-08-10 | 1 | -41/+43 | |
| | | | | | of the warnings had to be temporarily disabled, but will be checked again once the code has moved into master. | |||||
* | Merge branch 'master' into v2.7a | John Wiegley | 2008-08-09 | 1 | -13/+6 | |
| | ||||||
* | Moved around most of the files so that source code is in src/, documentation | John Wiegley | 2008-08-05 | 1 | -0/+1131 | |
is in doc/, etc. |