Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Fixes to entry note parsing | John Wiegley | 2009-02-27 | 1 | -2/+3 | |
| | ||||||
* | Fixed the way item state is parsed and managed | John Wiegley | 2009-02-27 | 1 | -0/+14 | |
| | ||||||
* | Added support for tag/pop parsing directives | John Wiegley | 2009-02-26 | 1 | -7/+49 | |
| | | | | | | | | | | | | | | | | | | There are now "tag/pop" directives, to apply metadata to a range of transactions (and their postings). For example, if you wanted a conceptual "page" of transactions relating to business trip to Chicago, you could do this: tag Location: Chicago tag Purpose: Business ... transactions go here pop pop It would be as if you'd applied "; Location: Chicago", etc., to every transaction. | |||||
* | Fixes to the way textual directives were parsed | John Wiegley | 2009-02-26 | 1 | -20/+24 | |
| | ||||||
* | Enriched the context report during textual parsing | John Wiegley | 2009-02-26 | 1 | -29/+80 | |
| | ||||||
* | Added a warning_() macro | John Wiegley | 2009-02-26 | 1 | -14/+6 | |
| | ||||||
* | Marked all strings needing internationalization | John Wiegley | 2009-02-25 | 1 | -27/+34 | |
| | | | | | | | | | | | | | | | | 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". | |||||
* | Fixed an issue involving costs and reduced values | John Wiegley | 2009-02-24 | 1 | -1/+2 | |
| | ||||||
* | Made commodity reduction during parsing consistent | John Wiegley | 2009-02-24 | 1 | -9/+1 | |
| | ||||||
* | Restored the price conversion text directive (C) | John Wiegley | 2009-02-24 | 1 | -4/+1 | |
| | ||||||
* | The Great Renaming, Part II | John Wiegley | 2009-02-23 | 1 | -147/+147 | |
| | | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset. | |||||
* | Removed unused member keep_details_t::keep_base | John Wiegley | 2009-02-23 | 1 | -1/+1 | |
| | ||||||
* | Many fixes to --market and --exchange | John Wiegley | 2009-02-22 | 1 | -9/+1 | |
| | | | | Also, --exchange now accepted multiple, comma-separated commodities. | |||||
* | Greatly improved the way "weeks" are iterated | John Wiegley | 2009-02-21 | 1 | -1/+1 | |
| | ||||||
* | Added a --strict session option | John Wiegley | 2009-02-19 | 1 | -9/+39 | |
| | | | | | | | When enabled, if any accounts or commodities are seen in an uncleared transaction, which were not seen previously in a cleared or pending transaction or a textual directive dealing with accounts or commodities, a warning is generated about the unknown item. | |||||
* | Re-enabled parsing of timelog data | John Wiegley | 2009-02-19 | 1 | -7/+11 | |
| | ||||||
* | Fixed several unused value and param warnings | John Wiegley | 2009-02-16 | 1 | -7/+5 | |
| | ||||||
* | Abort journal parsing if Control-C is caught | John Wiegley | 2009-02-16 | 1 | -0/+3 | |
| | ||||||
* | item_predicate now operates on scope_t | John Wiegley | 2009-02-15 | 1 | -4/+3 | |
| | | | | This means item_predicate is no longer a template. | |||||
* | Made (un)reduce rvalue methods more consistent | John Wiegley | 2009-02-12 | 1 | -1/+6 | |
| | | | | | | They names were changed from reduce/unreduce to reduced/unreduced, since they return the modified value. This is more consistent with the naming of rounded/rounded. | |||||
* | Ignore lines in Ledger files which contain only whitespace. | John Wiegley | 2009-02-12 | 1 | -1/+1 | |
| | ||||||
* | If a textual directive can't be found, ignore it. | John Wiegley | 2009-02-10 | 1 | -0/+4 | |
| | ||||||
* | Break libledger_data's dependency on session_t. | John Wiegley | 2009-02-09 | 1 | -29/+30 | |
| | ||||||
* | Removed the balance_pair_t type, since it's now an unneeded abstraction. | John Wiegley | 2009-02-09 | 1 | -8/+0 | |
| | | | | | This type was a holdback from the days before the amount_expr was used everywhere to determine a transaction's value. | |||||
* | Several fixes to get the state flags to appear right in "print". | John Wiegley | 2009-02-07 | 1 | -5/+4 | |
| | ||||||
* | Threw away the "multiple parser" infrastructure. | John Wiegley | 2009-02-07 | 1 | -131/+178 | |
| | ||||||
* | More revision to the way options are handled; reworked CSV command. | John Wiegley | 2009-02-07 | 1 | -4/+0 | |
| | ||||||
* | Greatly simplified the way option and command handlers are defined. | John Wiegley | 2009-02-05 | 1 | -2/+2 | |
| | ||||||
* | Moved much of the main.cc code into a new global_scope_t class. | John Wiegley | 2009-02-05 | 1 | -0/+7 | |
| | ||||||
* | Largely removed all of Ledger's use of global variables, for the REPL's sake. | John Wiegley | 2009-02-04 | 1 | -22/+31 | |
| | ||||||
* | Moved ptristream into its own file. | John Wiegley | 2009-02-04 | 1 | -58/+1 | |
| | ||||||
* | Simplified the textual parser, and improved metadata support. | John Wiegley | 2009-02-04 | 1 | -493/+390 | |
| | ||||||
* | Several improvement to transaction parsing. | John Wiegley | 2009-02-04 | 1 | -25/+44 | |
| | ||||||
* | 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 | |
| |