Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add a position_t object for tracking item positions | John Wiegley | 2009-10-30 | 1 | -2/+2 | |
| | | | | It is also optional, which is useful for generated items. | |||||
* | Added some additional assertion tests re: temps | John Wiegley | 2009-10-28 | 1 | -4/+11 | |
| | ||||||
* | Support balancing of postings with integer amounts | John Wiegley | 2009-10-27 | 1 | -1/+6 | |
| | ||||||
* | Use the WRITTEN date format for idstrings | John Wiegley | 2009-10-27 | 1 | -1/+1 | |
| | ||||||
* | Redid the way temporaries are handled in filtering | John Wiegley | 2009-10-27 | 1 | -1/+1 | |
| | ||||||
* | Made the id function available in post contexts | John Wiegley | 2009-10-27 | 1 | -19/+35 | |
| | ||||||
* | New valexpr functions: id, idstring, magnitude | John Wiegley | 2009-10-25 | 1 | -0/+39 | |
| | | | | | | id returns a unique SHA1 id of a transaction. idstring is the string that the SHA1 is based on. magnitude is the sum of the positive side of a transaction. | |||||
* | Split commodity.h/cc into three files | John Wiegley | 2009-06-24 | 1 | -3/+4 | |
| | | | | | | commodity.h - code for commodity_t annotate.h - commodity annotations pool.h - commodity pool management | |||||
* | Fixes to the 'xact' command (used to be 'entry') | John Wiegley | 2009-06-19 | 1 | -2/+8 | |
| | ||||||
* | Enabled use of pre-compiled headers by default | John Wiegley | 2009-03-10 | 1 | -0/+2 | |
| | ||||||
* | Changed the way that account balances are computed | John Wiegley | 2009-03-06 | 1 | -10/+6 | |
| | ||||||
* | Reduced the #include dependency tree to a minimum | John Wiegley | 2009-03-04 | 1 | -2/+2 | |
| | ||||||
* | Cured several harmless compiler warnings | John Wiegley | 2009-03-04 | 1 | -0/+4 | |
| | ||||||
* | Changed many assert() calls to VERIFY() | John Wiegley | 2009-03-04 | 1 | -1/+1 | |
| | ||||||
* | Gather account details in a details_t structure | John Wiegley | 2009-03-03 | 1 | -2/+4 | |
| | ||||||
* | Corrected warnings g++-4.3.3 was complaining about | John Wiegley | 2009-02-28 | 1 | -1/+2 | |
| | ||||||
* | Changed "priced" to "cost_calculated" for clarity | John Wiegley | 2009-02-27 | 1 | -3/+3 | |
| | ||||||
* | Fixed bugs relating to sign and rounding of costs | John Wiegley | 2009-02-27 | 1 | -7/+13 | |
| | ||||||
* | Fixed the way item state is parsed and managed | John Wiegley | 2009-02-27 | 1 | -16/+7 | |
| | ||||||
* | Print more context if an automated xact fails | John Wiegley | 2009-02-26 | 1 | -0/+9 | |
| | ||||||
* | Marked all strings needing internationalization | John Wiegley | 2009-02-25 | 1 | -6/+6 | |
| | | | | | | | | | | | | | | | | 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 | -64/+74 | |
| | ||||||
* | Improved the way that entries are balanced | John Wiegley | 2009-02-24 | 1 | -24/+59 | |
| | ||||||
* | Switched from using POST_AUTO to ITEM_GENERATED | John Wiegley | 2009-02-24 | 1 | -2/+3 | |
| | ||||||
* | Fixed a minor bug in handling of automated xacts | John Wiegley | 2009-02-23 | 1 | -1/+1 | |
| | | | | | There was a if statement with an inverse boolean meaning, which caused some automated transaction postings to have a null amount. | |||||
* | The Great Renaming, Part II | John Wiegley | 2009-02-23 | 1 | -215/+303 | |
| | | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset. | |||||
* | Many fixes to both --market and --exchange | John Wiegley | 2009-02-23 | 1 | -0/+3 | |
| | ||||||
* | Added --exchange (-x) option | John Wiegley | 2009-02-22 | 1 | -0/+6 | |
| | | | | | | | This is like -V, except it lets you specify the goal commodity to report in terms of, for example: reg -x CAD | |||||
* | Create a new interactive_t helper class | John Wiegley | 2009-02-21 | 1 | -8/+7 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of this class is much like Emacs' (interactive) form: it allows a value expression function to declare exactly how many arguments, and of what type, it intends to receive. It then offers type-safe access to theese arguments in a consistent manner. An example value expression function definition in C++: value_t fn_foo(call_scope_t& scope) { // We expect a string, an integer, and an optional date interactive_t args(scope, "sl&d"); std::cout << "String = " << args.get<string>(0) << "Integer = " << args.get<long>(1) << std::endl; if (args.has(2)) // was a date provided? std::cout << "Date = " << args.get<date_t>(2) << std::endl; return NULL_VALUE; } There is also an in_context_t<T> template, which finds the context type T in the current scope hierarchy. The in_context_t then also acts as a smart pointer to reference this context object, in addition to serving the same duty as interactive_t. This combination of intent is solely for the sake of brevity. value_t fn_bar(call_scope_t& scope) { in_context_t<account_t> env(scope, "sl&d"); std::cout << "Account name = " << env->fullname() << "String arg = " << env.get<string>(0) << std::endl; return NULL_VALUE; } As you can see here, 'env' acts as a smart pointer to the required context, and an object to extract the typed arguments. | |||||
* | If a transaction's total is null, return 0 instead | John Wiegley | 2009-02-19 | 1 | -1/+1 | |
| | ||||||
* | Added a "commodity" valexpr variable for xacts | John Wiegley | 2009-02-16 | 1 | -0/+6 | |
| | ||||||
* | Fixed a possible problem with xact_t::date() | John Wiegley | 2009-02-16 | 1 | -1/+1 | |
| | ||||||
* | Provide a "depth" variable for xacts | John Wiegley | 2009-02-15 | 1 | -0/+9 | |
| | ||||||
* | Removed "total_cost" valexpr, and value_t::cost | John Wiegley | 2009-02-15 | 1 | -13/+4 | |
| | | | | | Since cost reports are now calculated by setting the amount_ expression, there is no need to track a separate "total cost" entity. | |||||
* | Corrected double problem in period reports | John Wiegley | 2009-02-15 | 1 | -6/+2 | |
| | | | | | xact_t::add_to_value, in cases where the xact had a "compound" total, was adding transaction values to the running total twice. | |||||
* | Added xact_t::count member | John Wiegley | 2009-02-15 | 1 | -0/+7 | |
| | | | | | | This allows reports to access the "whicheth" index of the reported transaction. It's used mainly by the --average report, which divides the running total by this count to get the arithmetic mean. | |||||
* | xact metadata searches get passed up to the entry | John Wiegley | 2009-02-14 | 1 | -0/+38 | |
| | | | | | | 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. | |||||
* | Restored the --actual and --real options | John Wiegley | 2009-02-14 | 1 | -0/+24 | |
| | ||||||
* | Don't print an xact's amount if it was calculated | John Wiegley | 2009-02-13 | 1 | -0/+6 | |
| | | | | | That is, if the user didn't enter an amount for that transaction in their ledger journal, don't print one out either. | |||||
* | Re-enabled some code, and removed a bunch of deadwood. | John Wiegley | 2009-02-12 | 1 | -15/+0 | |
| | ||||||
* | Rewrote the "entry" command. It's ALIVE! | John Wiegley | 2009-02-11 | 1 | -1/+1 | |
| | ||||||
* | Fix to handling of effective dates in xact_t::date(). | John Wiegley | 2009-02-09 | 1 | -3/+9 | |
| | ||||||
* | Use the report's amount_expr everywhere that computes an xact's amount. | John Wiegley | 2009-02-09 | 1 | -6/+6 | |
| | ||||||
* | Several fixes to get the state flags to appear right in "print". | John Wiegley | 2009-02-07 | 1 | -0/+9 | |
| | ||||||
* | Added two comments, to remind myself to check something. | John Wiegley | 2009-02-06 | 1 | -0/+1 | |
| | ||||||
* | Largely removed all of Ledger's use of global variables, for the REPL's sake. | John Wiegley | 2009-02-04 | 1 | -6/+7 | |
| | ||||||
* | Simplified error context handling. | John Wiegley | 2009-02-02 | 1 | -15/+0 | |
| | ||||||
* | Added support for metadata and tagging, and made regexs a first-class type. | John Wiegley | 2009-02-01 | 1 | -7/+9 | |
| | ||||||
* | Stopped using the generic "unsigned int" in favor of more specific types. | John Wiegley | 2009-01-29 | 1 | -1/+1 | |
| | ||||||
* | Increased copyright range to include 2009. | John Wiegley | 2009-01-20 | 1 | -1/+1 | |
| |