diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-11 16:03:50 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-11 17:02:25 -0400 |
commit | dea2aed0b509734ec4e1cd163ac2a4f013000da2 (patch) | |
tree | 7908da76c67ae5172882306a319bf26df81b73b4 /doc | |
parent | d580079df892c30d023b3211d6c4611c17b11f8f (diff) | |
download | fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.gz fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.tar.bz2 fork-ledger-dea2aed0b509734ec4e1cd163ac2a4f013000da2.zip |
Untabified all source files
Diffstat (limited to 'doc')
-rw-r--r-- | doc/NEWS | 28 | ||||
-rw-r--r-- | doc/README | 4 | ||||
-rw-r--r-- | doc/grammar.y | 22 |
3 files changed, 27 insertions, 27 deletions
@@ -1,4 +1,4 @@ - Ledger NEWS + Ledger NEWS * 3.0 @@ -291,7 +291,7 @@ features, please see the manual. monthly costs report, for example, because it makes the following command possible: - ledger -M --only "a>100" reg ^Expenses:Food + ledger -M --only "a>100" reg ^Expenses:Food This shows only *months* whose amount is greater than 100. If --limit had been used, it would have been a monthly summary of @@ -303,7 +303,7 @@ features, please see the manual. This predicate does not constrain calculation, but only display. Consider the same command as above: - ledger -M --display "a>100" reg ^Expenses:Food + ledger -M --display "a>100" reg ^Expenses:Food This displays only lines whose amount is greater than 100, *yet the running total still includes amounts from all transactions*. @@ -311,7 +311,7 @@ features, please see the manual. the current month's checking register while still giving a correct ending balance: - ledger --display "d>[this month]" reg Checking + ledger --display "d>[this month]" reg Checking Note that these predicates can be combined. Here is a report that considers only food bills whose individual cost is greater than @@ -320,8 +320,8 @@ features, please see the manual. retain an accurate running total with respect to the entire ledger file: - ledger -M --limit "a>20" --only "a>200" \ - --display "year == yearof([last year])" reg ^Expenses:Food + ledger -M --limit "a>20" --only "a>200" \ + --display "year == yearof([last year])" reg ^Expenses:Food - Added new "--descend AMOUNT" and "--descend-if VALEXPR" reporting options. For any reports that display valued transactions (i.e., @@ -398,12 +398,12 @@ features, please see the manual. G gain_total U(x) abs(x) S(x) quant(x), quantity(x) - comm(x), commodity(x) - setcomm(x,y), set_commodity(x,y) + comm(x), commodity(x) + setcomm(x,y), set_commodity(x,y) A(x) mean(x), avg(x), average(x) P(x,y) val(x,y), value(x,y) - min(x,y) - max(x,y) + min(x,y) + max(x,y) - There are new "parse" and "expr" commands, whose argument is a single value expression. Ledger will simply print out the result of @@ -554,10 +554,10 @@ features, please see the manual. the following is now supported, which wasn't previously: 2004/06/21 Adjustment - Retirement 100 FUNDA - Retirement 200 FUNDB - Retirement 300 FUNDC - Equity:Adjustments + Retirement 100 FUNDA + Retirement 200 FUNDB + Retirement 300 FUNDC + Equity:Adjustments - Fixed several bugs relating to QIF parsing, budgeting and forecasting. @@ -1,7 +1,7 @@ - Welcome to Ledger + Welcome to Ledger - the command-line accounting program + the command-line accounting program Introduction ============ diff --git a/doc/grammar.y b/doc/grammar.y index 018e7391..9a5f740b 100644 --- a/doc/grammar.y +++ b/doc/grammar.y @@ -53,7 +53,7 @@ journal_item: whitespace: EOL | WHITESPACE EOL | - ';' TEXT EOL | /* these next four are all ignored */ + ';' TEXT EOL | /* these next four are all ignored */ '*' TEXT EOL | ; @@ -70,23 +70,23 @@ word_directive: "end" | "alias" STRING '=' TEXT | "def" TEXT | - TEXT WHITESPACE TEXT /* looked up in session (aka maybe Python) */ + TEXT WHITESPACE TEXT /* looked up in session (aka maybe Python) */ ; char_directive: - 'i' date time TEXT | /* a timeclock.el "check in" */ + 'i' date time TEXT | /* a timeclock.el "check in" */ 'I' date time TEXT | - 'o' date time TEXT | /* a timeclock.el "check out" */ + 'o' date time TEXT | /* a timeclock.el "check out" */ 'O' date time TEXT | 'h' TEXT EOL | 'b' TEXT EOL | - 'D' amount | /* sets display parameters for a commodity */ - 'A' TEXT | /* sets the "default balancing account" */ - 'C' commodity '=' amount | /* specifies a commodity conversion */ + 'D' amount | /* sets display parameters for a commodity */ + 'A' TEXT | /* sets the "default balancing account" */ + 'C' commodity '=' amount | /* specifies a commodity conversion */ 'P' date time commodity amount | /* a pricing history xact */ - 'N' commodity | /* commodity's price is never downloaded */ - 'Y' INT4 | /* sets the default year for date parsing */ - '-' '-' STRING TEXT | /* specify command-line options in the file */ + 'N' commodity | /* commodity's price is never downloaded */ + 'Y' INT4 | /* sets the default year for date parsing */ + '-' '-' STRING TEXT | /* specify command-line options in the file */ ; date: INT4 date_sep INT2 date_sep INT2 ; @@ -210,7 +210,7 @@ values_opt: price_opt: price | /* epsilon */ ; price: '@' amount_expr | - '@@' amount_expr /* in this case, it's the whole price */ + '@@' amount_expr /* in this case, it's the whole price */ ; account: |