summaryrefslogtreecommitdiff
path: root/journal.h
Commit message (Collapse)AuthorAgeFilesLines
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-128/+0
| | | | is in doc/, etc.
* Moved xact_xdata_t into xact_t itself, as a set of "extended data" that mightJohn Wiegley2008-08-021-4/+0
| | | | | | | | be gathered during reporting. Removed the references to accounts and such from the mask logic, which means that the value expression "acount =~ /foo/" is needed in place of just "/foo/".
* Change many uses of for+iterator to use Boost.Foreach.John Wiegley2008-07-311-1/+5
|
* Revised the way that exceptions are thrown around. Instead of context being aJohn Wiegley2008-07-311-8/+0
| | | | | | | complicated string of pointers, it's now just a global block of text that gets appended to as the error is being thrown up, and can be displayed at the catch point if desired. There are almost no cases where a thrown exception will not result in an error message being displayed to the user.
* A new binary_cache_t object has been creating to manage saving and restoring aJohn Wiegley2008-07-311-16/+11
| | | | | Ledger session from a cache file. It doesn't work at all yet, though at least the major structures are in place now.
* Moved around and renamed a very large amount of code in order to rationalizeJohn Wiegley2008-07-291-428/+8
| | | | the way that value expressions extract information from journal objects.
* Changed the way scopes are structured for an upcoming design change.John Wiegley2008-07-291-3/+3
|
* Value expression architecture is now rewritten, but the functionality of theJohn Wiegley2008-07-291-5/+56
| | | | | | | old system (for example, the meaning of 'a') has yet to be restored. In the new scheme, this will be done by definition a function outside of the value expression logic, rather than the tight coupling between journal innards and value expressions that occurred in 2.x.
* Updated all copyright messages to 2003-2008.John Wiegley2008-07-271-1/+1
|
* A large body of work to get the register report printing again, but stillJohn Wiegley2008-07-271-31/+7
| | | | fails due to the fact that 2.x value expression syntax is not restored.
* --verify works again, but the memory totals at the end still need work.John Wiegley2008-07-261-21/+68
|
* Parsing now works again. And there was much rejoicing.John Wiegley2008-07-241-2/+8
|
* A great deal of reorganization to restore the old parsing code (since theJohn Wiegley2008-07-221-1/+5
| | | | newer XML stuff was pulled).
* Things are at least compiling and linking again, but we're still far fromJohn Wiegley2008-07-201-1/+3
| | | | having a functional binary.
* I have walked further along the road less compiled by...John Wiegley2008-07-201-6/+6
|
* Brought in the final round of 3.0 code, although it does not compile yet:John Wiegley2008-07-201-117/+139
| | | | report, session, parts of xpath, main, journal, option.
* The code is compiling again, but it's far from being able to run yet.John Wiegley2008-05-081-63/+52
|
* Migrated over both code and build environment from was-v3.0 branch.John Wiegley2008-05-081-4/+1
|
* Added a note field to entry_t objects.John Wiegley2008-04-131-0/+1
|
* Made separate modules for the csv command, since the prior method wasJohn Wiegley2008-04-131-0/+2
| | | | not fully correct.
* *** empty log message ***John Wiegley2008-04-131-1/+1
|
* Reworked the way date/times are handled.John Wiegley2008-04-131-19/+18
|
* Tons of corrections and fixes to value expressions and lot figures.John Wiegley2008-04-131-22/+22
|
* *** empty log message ***John Wiegley2008-04-131-0/+28
|
* Added much better error location.John Wiegley2008-04-131-2/+0
|
* *** empty log message ***John Wiegley2008-04-131-6/+5
|
* Began support for improved commodity handling.John Wiegley2008-04-131-4/+0
|
* (read_binary_journal): Fixed a tiny memory leak when reading from aJohn Wiegley2008-04-131-2/+1
| | | | binary cache.
* Checked in all major updates.John Wiegley2008-04-131-28/+4
|
* *** empty log message ***John Wiegley2008-04-131-2/+11
|
* *** empty log message ***John Wiegley2008-04-131-6/+10
|
* *** empty log message ***John Wiegley2008-04-131-3/+16
|
* Fixed some compiler complaints.John Wiegley2008-04-131-4/+4
|
* Added a global variable `entry_balance' which contains the balance ofJohn Wiegley2008-04-131-0/+2
| | | | the last attempted entry finalization.
* Transactions now track their beginning and ending position, as doJohn Wiegley2008-04-131-13/+18
| | | | | | | entries. The new format strings %xB %xE %xb %xe can be used to display those values relative to a transaction. The Emacs module now relies on this support to exactly determine where a transaction is, rather than the Elisp logic it relied on previously.
* (class transaction_t): Initialize _date_eff to zero.John Wiegley2008-04-131-6/+7
|
* (class entry_base_t): Initialize the `journal' pointer to NULL onJohn Wiegley2008-04-131-2/+2
| | | | object creation.
* See ChangeLogJohn Wiegley2008-04-131-5/+35
|
* Support has been added for clearing of individual transactions. SetJohn Wiegley2008-04-131-7/+9
| | | | `ledger-clear-whole-entries' in Emacs to revert to the old behavior.
* (class entry_base_t): Added `beg_line' and `end_line' members.John Wiegley2008-04-131-0/+2
|
* (class journal_t): Added a "basket" account member, which if set isJohn Wiegley2008-04-131-1/+2
| | | | the account to which all single-transaction entries are balanced.
* Changes to support building with gcc 2.95.John Wiegley2008-04-131-5/+6
|
* Added support for each entry to remember: the file it came from, andJohn Wiegley2008-04-131-8/+21
| | | | | | the beginning and ending character positions of that entry within the file. This makes it possible to reproduce the input exactly, with only the changed entries updated.
* (class journal_t): Added `price_db' member, which is the priceJohn Wiegley2008-04-131-0/+1
| | | | database used to read in historical prices for a given journal.
* updated to version 2.0John Wiegley2008-04-131-0/+385
|
* changesJohn Wiegley2008-04-131-282/+0
|
* finalizer fixes; removed use of timing.h from main.ccJohn Wiegley2004-09-241-4/+10
|
* changed entry_finalizer scheme to use objects, not just function pointersJohn Wiegley2004-09-241-11/+26
|
* a bit more refactoringJohn Wiegley2004-09-231-3/+0
|
* added filesJohn Wiegley2004-09-231-0/+264