summaryrefslogtreecommitdiff
path: root/src/xact.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Added serialization methods for most typeJohn Wiegley2009-10-301-0/+67
| | | | | This allows journal_t objects to be completed serialized to disk and deserialized.
* Removed erroneous throw specifier from period_xact_tJohn Wiegley2009-10-301-1/+1
|
* Made the id function available in post contextsJohn Wiegley2009-10-271-0/+4
|
* Temporarily stubbed out an inaccurate assertJohn Wiegley2009-06-151-1/+7
|
* First iteration of the new date_interval_t rewriteJohn Wiegley2009-03-151-3/+3
|
* Reduced the #include dependency tree to a minimumJohn Wiegley2009-03-041-2/+5
|
* Fixed the way item state is parsed and managedJohn Wiegley2009-02-271-2/+0
|
* The Great Renaming, Part IIJohn Wiegley2009-02-231-131/+178
| | | | | 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 --exchangeJohn Wiegley2009-02-231-6/+0
|
* Added xact_t::count memberJohn Wiegley2009-02-151-1/+4
| | | | | | 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 entryJohn Wiegley2009-02-141-0/+8
| | | | | | 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.
* Sorting expr now uses "-" to indicate descendingJohn Wiegley2009-02-121-3/+4
| | | | | For example: -S payee,-date sorts 1) ascending by payee, then 2) descending by date.
* Re-enabled some code, and removed a bunch of deadwood.John Wiegley2009-02-121-1/+1
|
* Was failing to copy over the xact's assigned_amount when copy constructing.John Wiegley2009-02-091-0/+1
|
* Use the report's amount_expr everywhere that computes an xact's amount.John Wiegley2009-02-091-1/+1
|
* Removed the nearly unknown --descend and --descend-if options.John Wiegley2009-02-061-24/+0
|
* Largely removed all of Ledger's use of global variables, for the REPL's sake.John Wiegley2009-02-041-2/+2
|
* Simplified the textual parser, and improved metadata support.John Wiegley2009-02-041-9/+0
|
* Removed unneeded member variables.John Wiegley2009-02-041-3/+1
|
* Don't store the amount expression object in transactions.John Wiegley2009-02-031-0/+6
| | | | This is unnecessary since binary caching is no longer being used.
* Added documentation stubs for all include files and classes.John Wiegley2009-01-311-0/+19
|
* Stopped using the generic "unsigned int" in favor of more specific types.John Wiegley2009-01-291-7/+7
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Changed some of the transaction flags, since all must fit in 8 bits.John Wiegley2008-09-191-4/+4
|
* Renamed XACT_BALANCE flag to XACT_MUST_BALANCE.John Wiegley2008-09-191-5/+5
|
* Factored common parts of entry_t and xact_t into new item_tJohn Wiegley2008-09-191-60/+29
|
* Restored --cleared, --pending, --uncleared, -X and -Y.John Wiegley2008-09-161-1/+1
|
* Transactional assignments (i.e., confirmed balances) are working now.John Wiegley2008-09-141-1/+3
|
* Fixed a memory leak that would show up if --verify --verbose was running andJohn Wiegley2008-08-101-2/+14
| | | | an error or exception occurred.
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+228
is in doc/, etc.