;doc: regen manuals

This commit is contained in:
Simon Michael 2019-12-01 10:12:29 -08:00
parent 6daebf60ea
commit d922b6e798
25 changed files with 470 additions and 454 deletions

View File

@ -4,4 +4,4 @@ m4_dnl Program version. Updated by make setversion.
m4_define({{_version_}}, {{1.16}})m4_dnl m4_define({{_version_}}, {{1.16}})m4_dnl
m4_dnl m4_dnl
m4_dnl Date to show in man pages. Updated by make setdate. m4_dnl Date to show in man pages. Updated by make setdate.
m4_define({{_monthyear_}}, {{September 2019}})m4_dnl m4_define({{_monthyear_}}, {{December 2019}})m4_dnl

View File

@ -1,6 +1,6 @@
.\"t .\"t
.TH "hledger_csv" "5" "September 2019" "hledger 1.15.99" "hledger User Manuals" .TH "hledger_csv" "5" "December 2019" "hledger 1.16" "hledger User Manuals"

View File

@ -3,8 +3,8 @@ This is hledger_csv.info, produced by makeinfo version 6.5 from stdin.
 
File: hledger_csv.info, Node: Top, Next: EXAMPLES, Up: (dir) File: hledger_csv.info, Node: Top, Next: EXAMPLES, Up: (dir)
hledger_csv(5) hledger 1.15.99 hledger_csv(5) hledger 1.16
****************************** ***************************
hledger can read CSV (comma-separated value, or character-separated hledger can read CSV (comma-separated value, or character-separated
value) files as if they were journal files, automatically converting value) files as if they were journal files, automatically converting
@ -888,57 +888,57 @@ command the user specified.
 
Tag Table: Tag Table:
Node: Top72 Node: Top72
Node: EXAMPLES1835 Node: EXAMPLES1829
Ref: #examples1941 Ref: #examples1935
Node: Basic2149 Node: Basic2143
Ref: #basic2249 Ref: #basic2243
Node: Bank of Ireland2791 Node: Bank of Ireland2785
Ref: #bank-of-ireland2926 Ref: #bank-of-ireland2920
Node: Amazon4389 Node: Amazon4383
Ref: #amazon4507 Ref: #amazon4501
Node: Paypal6440 Node: Paypal6434
Ref: #paypal6534 Ref: #paypal6528
Node: CSV RULES14417 Node: CSV RULES14411
Ref: #csv-rules14526 Ref: #csv-rules14520
Node: skip14771 Node: skip14765
Ref: #skip14864 Ref: #skip14858
Node: fields15239 Node: fields15233
Ref: #fields15361 Ref: #fields15355
Node: Transaction field names16428 Node: Transaction field names16422
Ref: #transaction-field-names16588 Ref: #transaction-field-names16582
Node: Posting field names16699 Node: Posting field names16693
Ref: #posting-field-names16851 Ref: #posting-field-names16845
Node: field assignment18083 Node: field assignment18077
Ref: #field-assignment18219 Ref: #field-assignment18213
Node: if19037 Node: if19031
Ref: #if19146 Ref: #if19140
Node: end20862 Node: end20856
Ref: #end20968 Ref: #end20962
Node: date-format21192 Node: date-format21186
Ref: #date-format21324 Ref: #date-format21318
Node: newest-first22073 Node: newest-first22067
Ref: #newest-first22211 Ref: #newest-first22205
Node: include22894 Node: include22888
Ref: #include23002 Ref: #include22996
Node: TIPS23446 Node: TIPS23440
Ref: #tips23528 Ref: #tips23522
Node: Valid CSV23777 Node: Valid CSV23771
Ref: #valid-csv23896 Ref: #valid-csv23890
Node: Other separator characters24088 Node: Other separator characters24082
Ref: #other-separator-characters24276 Ref: #other-separator-characters24270
Node: Reading multiple CSV files24605 Node: Reading multiple CSV files24599
Ref: #reading-multiple-csv-files24802 Ref: #reading-multiple-csv-files24796
Node: Valid transactions25043 Node: Valid transactions25037
Ref: #valid-transactions25221 Ref: #valid-transactions25215
Node: Deduplicating importing25849 Node: Deduplicating importing25843
Ref: #deduplicating-importing26028 Ref: #deduplicating-importing26022
Node: Setting amounts27061 Node: Setting amounts27055
Ref: #setting-amounts27230 Ref: #setting-amounts27224
Node: Setting currency/commodity28216 Node: Setting currency/commodity28210
Ref: #setting-currencycommodity28408 Ref: #setting-currencycommodity28402
Node: Referencing other fields29211 Node: Referencing other fields29205
Ref: #referencing-other-fields29411 Ref: #referencing-other-fields29405
Node: How CSV rules are evaluated30308 Node: How CSV rules are evaluated30302
Ref: #how-csv-rules-are-evaluated30479 Ref: #how-csv-rules-are-evaluated30473
 
End Tag Table End Tag Table

View File

@ -760,4 +760,4 @@ SEE ALSO
hledger 1.15.99 September 2019 hledger_csv(5) hledger 1.16 December 2019 hledger_csv(5)

View File

@ -1,6 +1,6 @@
.\"t .\"t
.TH "hledger_journal" "5" "September 2019" "hledger 1.15.99" "hledger User Manuals" .TH "hledger_journal" "5" "December 2019" "hledger 1.16" "hledger User Manuals"
@ -1133,9 +1133,25 @@ Y2010 ; change default year to 2010
.fi .fi
.SS Declaring commodities .SS Declaring commodities
.PP .PP
The \f[C]commodity\f[R] directive declares commodities which may be used The \f[C]commodity\f[R] directive has several functions:
in the journal, and their display format. .IP "1." 3
It declares commodities which may be used in the journal.
This is currently not enforced, but can serve as documentation.
.IP "2." 3
It declares what decimal mark character to expect when parsing input -
useful to disambiguate international number formats in your data.
(Without this, hledger will parse both \f[C]1,000\f[R] and
\f[C]1.000\f[R] as 1).
.IP "3." 3
It declares the amount display format to use in output - decimal and
digit group marks, number of decimal places, symbol placement etc.
.PP .PP
You are likely to run into one of the problems solved by commodity
directives, sooner or later, so it\[aq]s a good idea to just always use
them to declare your commodities.
.PP
A commodity directive is just the word \f[C]commodity\f[R] followed by
an amount.
It may be written on a single line, like this: It may be written on a single line, like this:
.IP .IP
.nf .nf
@ -1150,8 +1166,8 @@ commodity 1,000.0000 AAAA
.fi .fi
.PP .PP
or on multiple lines, using the \[dq]format\[dq] subdirective. or on multiple lines, using the \[dq]format\[dq] subdirective.
In this case the commodity symbol appears twice and should be the same (In this case the commodity symbol appears twice and should be the same
in both places: in both places.):
.IP .IP
.nf .nf
\f[C] \f[C]
@ -1162,24 +1178,14 @@ in both places:
; thousands, lakhs and crores comma-separated, ; thousands, lakhs and crores comma-separated,
; period as decimal point, and two decimal places. ; period as decimal point, and two decimal places.
commodity INR commodity INR
format INR 9,99,99,999.00 format INR 1,00,00,000.00
\f[R] \f[R]
.fi .fi
.PP .PP
Declaring commodites may be useful as documentation, but currently we do The quantity of the amount does not matter; only the format is
not enforce that only declared commodities may be used. significant.
This directive is mainly useful for customising the preferred display The number must include a decimal mark: either a period or a comma,
format for a commodity. followed by 0 or more decimal digits.
.PP
Normally the display format is inferred from journal entries, but this
can be unpredictable; declaring it with a commodity directive overrides
this and removes ambiguity.
Towards this end, amounts in commodity directives must always be written
with a decimal point (a period or comma, followed by 0 or more decimal
digits).
.PP
Commodity directives do not affect how amounts are parsed; the parser
will read multiple formats.
.SS Default commodity .SS Default commodity
.PP .PP
The \f[C]D\f[R] directive sets a default commodity (and display format), The \f[C]D\f[R] directive sets a default commodity (and display format),

View File

@ -4,8 +4,8 @@ stdin.
 
File: hledger_journal.info, Node: Top, Next: FILE FORMAT, Up: (dir) File: hledger_journal.info, Node: Top, Next: FILE FORMAT, Up: (dir)
hledger_journal(5) hledger 1.15.99 hledger_journal(5) hledger 1.16
********************************** *******************************
hledger's usual data source is a plain text file containing journal hledger's usual data source is a plain text file containing journal
entries in hledger journal format. This file represents a standard entries in hledger journal format. This file represents a standard
@ -1023,10 +1023,26 @@ File: hledger_journal.info, Node: Declaring commodities, Next: Default commodi
1.14.4 Declaring commodities 1.14.4 Declaring commodities
---------------------------- ----------------------------
The 'commodity' directive declares commodities which may be used in the The 'commodity' directive has several functions:
journal, and their display format.
It may be written on a single line, like this: 1. It declares commodities which may be used in the journal. This is
currently not enforced, but can serve as documentation.
2. It declares what decimal mark character to expect when parsing
input - useful to disambiguate international number formats in your
data. (Without this, hledger will parse both '1,000' and '1.000'
as 1).
3. It declares the amount display format to use in output - decimal
and digit group marks, number of decimal places, symbol placement
etc.
You are likely to run into one of the problems solved by commodity
directives, sooner or later, so it's a good idea to just always use them
to declare your commodities.
A commodity directive is just the word 'commodity' followed by an
amount. It may be written on a single line, like this:
; commodity EXAMPLEAMOUNT ; commodity EXAMPLEAMOUNT
@ -1035,9 +1051,9 @@ journal, and their display format.
; separating thousands with comma. ; separating thousands with comma.
commodity 1,000.0000 AAAA commodity 1,000.0000 AAAA
or on multiple lines, using the "format" subdirective. In this case or on multiple lines, using the "format" subdirective. (In this case
the commodity symbol appears twice and should be the same in both the commodity symbol appears twice and should be the same in both
places: places.):
; commodity SYMBOL ; commodity SYMBOL
; format EXAMPLEAMOUNT ; format EXAMPLEAMOUNT
@ -1046,21 +1062,11 @@ places:
; thousands, lakhs and crores comma-separated, ; thousands, lakhs and crores comma-separated,
; period as decimal point, and two decimal places. ; period as decimal point, and two decimal places.
commodity INR commodity INR
format INR 9,99,99,999.00 format INR 1,00,00,000.00
Declaring commodites may be useful as documentation, but currently we The quantity of the amount does not matter; only the format is
do not enforce that only declared commodities may be used. This significant. The number must include a decimal mark: either a period or
directive is mainly useful for customising the preferred display format a comma, followed by 0 or more decimal digits.
for a commodity.
Normally the display format is inferred from journal entries, but
this can be unpredictable; declaring it with a commodity directive
overrides this and removes ambiguity. Towards this end, amounts in
commodity directives must always be written with a decimal point (a
period or comma, followed by 0 or more decimal digits).
Commodity directives do not affect how amounts are parsed; the parser
will read multiple formats.
 
File: hledger_journal.info, Node: Default commodity, Next: Market prices, Prev: Declaring commodities, Up: Directives File: hledger_journal.info, Node: Default commodity, Next: Market prices, Prev: Declaring commodities, Up: Directives
@ -1741,119 +1747,119 @@ See the [[Cookbook]] at hledger.org for the latest information.
 
Tag Table: Tag Table:
Node: Top76 Node: Top76
Node: FILE FORMAT2358 Node: FILE FORMAT2352
Ref: #file-format2482 Ref: #file-format2476
Node: Transactions2785 Node: Transactions2779
Ref: #transactions2906 Ref: #transactions2900
Node: Postings3590 Node: Postings3584
Ref: #postings3717 Ref: #postings3711
Node: Dates4712 Node: Dates4706
Ref: #dates4827 Ref: #dates4821
Node: Simple dates4892 Node: Simple dates4886
Ref: #simple-dates5018 Ref: #simple-dates5012
Node: Secondary dates5384 Node: Secondary dates5378
Ref: #secondary-dates5538 Ref: #secondary-dates5532
Node: Posting dates7101 Node: Posting dates7095
Ref: #posting-dates7230 Ref: #posting-dates7224
Node: Status8602 Node: Status8596
Ref: #status8722 Ref: #status8716
Node: Description10430 Node: Description10424
Ref: #description10568 Ref: #description10562
Node: Payee and note10888 Node: Payee and note10882
Ref: #payee-and-note11002 Ref: #payee-and-note10996
Node: Account names11337 Node: Account names11331
Ref: #account-names11480 Ref: #account-names11474
Node: Amounts11967 Node: Amounts11961
Ref: #amounts12103 Ref: #amounts12097
Node: Digit group marks13036 Node: Digit group marks13030
Ref: #digit-group-marks13185 Ref: #digit-group-marks13179
Node: Amount display format14123 Node: Amount display format14117
Ref: #amount-display-format14280 Ref: #amount-display-format14274
Node: Virtual Postings15305 Node: Virtual Postings15299
Ref: #virtual-postings15464 Ref: #virtual-postings15458
Node: Balance Assertions16684 Node: Balance Assertions16678
Ref: #balance-assertions16859 Ref: #balance-assertions16853
Node: Assertions and ordering17818 Node: Assertions and ordering17812
Ref: #assertions-and-ordering18004 Ref: #assertions-and-ordering17998
Node: Assertions and included files18704 Node: Assertions and included files18698
Ref: #assertions-and-included-files18945 Ref: #assertions-and-included-files18939
Node: Assertions and multiple -f options19278 Node: Assertions and multiple -f options19272
Ref: #assertions-and-multiple--f-options19532 Ref: #assertions-and-multiple--f-options19526
Node: Assertions and commodities19664 Node: Assertions and commodities19658
Ref: #assertions-and-commodities19894 Ref: #assertions-and-commodities19888
Node: Assertions and prices21050 Node: Assertions and prices21044
Ref: #assertions-and-prices21262 Ref: #assertions-and-prices21256
Node: Assertions and subaccounts21702 Node: Assertions and subaccounts21696
Ref: #assertions-and-subaccounts21929 Ref: #assertions-and-subaccounts21923
Node: Assertions and virtual postings22253 Node: Assertions and virtual postings22247
Ref: #assertions-and-virtual-postings22493 Ref: #assertions-and-virtual-postings22487
Node: Assertions and precision22635 Node: Assertions and precision22629
Ref: #assertions-and-precision22826 Ref: #assertions-and-precision22820
Node: Balance Assignments23093 Node: Balance Assignments23087
Ref: #balance-assignments23274 Ref: #balance-assignments23268
Node: Balance assignments and prices24439 Node: Balance assignments and prices24433
Ref: #balance-assignments-and-prices24611 Ref: #balance-assignments-and-prices24605
Node: Transaction prices24835 Node: Transaction prices24829
Ref: #transaction-prices25004 Ref: #transaction-prices24998
Node: Comments27270 Node: Comments27264
Ref: #comments27404 Ref: #comments27398
Node: Tags28574 Node: Tags28568
Ref: #tags28692 Ref: #tags28686
Node: Directives30085 Node: Directives30079
Ref: #directives30228 Ref: #directives30222
Node: Comment blocks35836 Node: Comment blocks35830
Ref: #comment-blocks35981 Ref: #comment-blocks35975
Node: Including other files36157 Node: Including other files36151
Ref: #including-other-files36337 Ref: #including-other-files36331
Node: Default year36745 Node: Default year36739
Ref: #default-year36914 Ref: #default-year36908
Node: Declaring commodities37321 Node: Declaring commodities37315
Ref: #declaring-commodities37504 Ref: #declaring-commodities37498
Node: Default commodity38933 Node: Default commodity39159
Ref: #default-commodity39109 Ref: #default-commodity39335
Node: Market prices39743 Node: Market prices39969
Ref: #market-prices39908 Ref: #market-prices40134
Node: Declaring accounts40749 Node: Declaring accounts40975
Ref: #declaring-accounts40925 Ref: #declaring-accounts41151
Node: Account comments41850 Node: Account comments42076
Ref: #account-comments42013 Ref: #account-comments42239
Node: Account subdirectives42408 Node: Account subdirectives42634
Ref: #account-subdirectives42603 Ref: #account-subdirectives42829
Node: Account types42916 Node: Account types43142
Ref: #account-types43100 Ref: #account-types43326
Node: Account display order44742 Node: Account display order44968
Ref: #account-display-order44912 Ref: #account-display-order45138
Node: Rewriting accounts46041 Node: Rewriting accounts46267
Ref: #rewriting-accounts46226 Ref: #rewriting-accounts46452
Node: Basic aliases46962 Node: Basic aliases47188
Ref: #basic-aliases47108 Ref: #basic-aliases47334
Node: Regex aliases47812 Node: Regex aliases48038
Ref: #regex-aliases47984 Ref: #regex-aliases48210
Node: Combining aliases48702 Node: Combining aliases48928
Ref: #combining-aliases48880 Ref: #combining-aliases49106
Node: end aliases50156 Node: end aliases50382
Ref: #end-aliases50304 Ref: #end-aliases50530
Node: Default parent account50405 Node: Default parent account50631
Ref: #default-parent-account50571 Ref: #default-parent-account50797
Node: Periodic transactions51455 Node: Periodic transactions51681
Ref: #periodic-transactions51653 Ref: #periodic-transactions51879
Node: Periodic rule syntax53525 Node: Periodic rule syntax53751
Ref: #periodic-rule-syntax53731 Ref: #periodic-rule-syntax53957
Node: Two spaces between period expression and description!54435 Node: Two spaces between period expression and description!54661
Ref: #two-spaces-between-period-expression-and-description54754 Ref: #two-spaces-between-period-expression-and-description54980
Node: Forecasting with periodic transactions55438 Node: Forecasting with periodic transactions55664
Ref: #forecasting-with-periodic-transactions55743 Ref: #forecasting-with-periodic-transactions55969
Node: Budgeting with periodic transactions57769 Node: Budgeting with periodic transactions57995
Ref: #budgeting-with-periodic-transactions58008 Ref: #budgeting-with-periodic-transactions58234
Node: Auto postings / transaction modifiers58457 Node: Auto postings / transaction modifiers58683
Ref: #auto-postings-transaction-modifiers58668 Ref: #auto-postings-transaction-modifiers58894
Node: Auto postings and dates60897 Node: Auto postings and dates61123
Ref: #auto-postings-and-dates61154 Ref: #auto-postings-and-dates61380
Node: Auto postings and transaction balancing / inferred amounts / balance assertions61329 Node: Auto postings and transaction balancing / inferred amounts / balance assertions61555
Ref: #auto-postings-and-transaction-balancing-inferred-amounts-balance-assertions61704 Ref: #auto-postings-and-transaction-balancing-inferred-amounts-balance-assertions61930
Node: Auto posting tags62082 Node: Auto posting tags62308
Ref: #auto-posting-tags62321 Ref: #auto-posting-tags62547
Node: EDITOR SUPPORT62986 Node: EDITOR SUPPORT63212
Ref: #editor-support63104 Ref: #editor-support63330
 
End Tag Table End Tag Table

View File

@ -788,9 +788,23 @@ FILE FORMAT
assets assets
Declaring commodities Declaring commodities
The commodity directive declares commodities which may be used in the The commodity directive has several functions:
journal, and their display format.
1. It declares commodities which may be used in the journal. This is
currently not enforced, but can serve as documentation.
2. It declares what decimal mark character to expect when parsing input
- useful to disambiguate international number formats in your data.
(Without this, hledger will parse both 1,000 and 1.000 as 1).
3. It declares the amount display format to use in output - decimal and
digit group marks, number of decimal places, symbol placement etc.
You are likely to run into one of the problems solved by commodity di-
rectives, sooner or later, so it's a good idea to just always use them
to declare your commodities.
A commodity directive is just the word commodity followed by an amount.
It may be written on a single line, like this: It may be written on a single line, like this:
; commodity EXAMPLEAMOUNT ; commodity EXAMPLEAMOUNT
@ -800,9 +814,9 @@ FILE FORMAT
; separating thousands with comma. ; separating thousands with comma.
commodity 1,000.0000 AAAA commodity 1,000.0000 AAAA
or on multiple lines, using the "format" subdirective. In this case or on multiple lines, using the "format" subdirective. (In this case
the commodity symbol appears twice and should be the same in both the commodity symbol appears twice and should be the same in both
places: places.):
; commodity SYMBOL ; commodity SYMBOL
; format EXAMPLEAMOUNT ; format EXAMPLEAMOUNT
@ -811,21 +825,11 @@ FILE FORMAT
; thousands, lakhs and crores comma-separated, ; thousands, lakhs and crores comma-separated,
; period as decimal point, and two decimal places. ; period as decimal point, and two decimal places.
commodity INR commodity INR
format INR 9,99,99,999.00 format INR 1,00,00,000.00
Declaring commodites may be useful as documentation, but currently we The quantity of the amount does not matter; only the format is signifi-
do not enforce that only declared commodities may be used. This direc- cant. The number must include a decimal mark: either a period or a
tive is mainly useful for customising the preferred display format for comma, followed by 0 or more decimal digits.
a commodity.
Normally the display format is inferred from journal entries, but this
can be unpredictable; declaring it with a commodity directive overrides
this and removes ambiguity. Towards this end, amounts in commodity di-
rectives must always be written with a decimal point (a period or
comma, followed by 0 or more decimal digits).
Commodity directives do not affect how amounts are parsed; the parser
will read multiple formats.
Default commodity Default commodity
The D directive sets a default commodity (and display format), to be The D directive sets a default commodity (and display format), to be
@ -1410,4 +1414,4 @@ SEE ALSO
hledger 1.15.99 September 2019 hledger_journal(5) hledger 1.16 December 2019 hledger_journal(5)

View File

@ -1,5 +1,5 @@
.TH "hledger_timeclock" "5" "September 2019" "hledger 1.15.99" "hledger User Manuals" .TH "hledger_timeclock" "5" "December 2019" "hledger 1.16" "hledger User Manuals"

View File

@ -4,8 +4,8 @@ stdin.
 
File: hledger_timeclock.info, Node: Top, Up: (dir) File: hledger_timeclock.info, Node: Top, Up: (dir)
hledger_timeclock(5) hledger 1.15.99 hledger_timeclock(5) hledger 1.16
************************************ *********************************
hledger can read timeclock files. As with Ledger, these are (a subset hledger can read timeclock files. As with Ledger, these are (a subset
of) timeclock.el's format, containing clock-in and clock-out entries as of) timeclock.el's format, containing clock-in and clock-out entries as

View File

@ -78,4 +78,4 @@ SEE ALSO
hledger 1.15.99 September 2019 hledger_timeclock(5) hledger 1.16 December 2019 hledger_timeclock(5)

View File

@ -1,5 +1,5 @@
.TH "hledger_timedot" "5" "September 2019" "hledger 1.15.99" "hledger User Manuals" .TH "hledger_timedot" "5" "December 2019" "hledger 1.16" "hledger User Manuals"

View File

@ -4,8 +4,8 @@ stdin.
 
File: hledger_timedot.info, Node: Top, Next: FILE FORMAT, Up: (dir) File: hledger_timedot.info, Node: Top, Next: FILE FORMAT, Up: (dir)
hledger_timedot(5) hledger 1.15.99 hledger_timedot(5) hledger 1.16
********************************** *******************************
Timedot is a plain text format for logging dated, categorised quantities Timedot is a plain text format for logging dated, categorised quantities
(of time, usually), supported by hledger. It is convenient for (of time, usually), supported by hledger. It is convenient for
@ -111,7 +111,7 @@ $ hledger -f t.timedot --alias /\\./=: bal date:2016/2/4
 
Tag Table: Tag Table:
Node: Top76 Node: Top76
Node: FILE FORMAT814 Node: FILE FORMAT808
Ref: #file-format915 Ref: #file-format909
 
End Tag Table End Tag Table

View File

@ -124,4 +124,4 @@ SEE ALSO
hledger 1.15.99 September 2019 hledger_timedot(5) hledger 1.16 December 2019 hledger_timedot(5)

View File

@ -4,4 +4,4 @@ m4_dnl Program version. Updated by make setversion.
m4_define({{_version_}}, {{1.16}})m4_dnl m4_define({{_version_}}, {{1.16}})m4_dnl
m4_dnl m4_dnl
m4_dnl Date to show in man pages. Updated by make setdate. m4_dnl Date to show in man pages. Updated by make setdate.
m4_define({{_monthyear_}}, {{August 2019}})m4_dnl m4_define({{_monthyear_}}, {{December 2019}})m4_dnl

View File

@ -1,5 +1,5 @@
.TH "hledger-ui" "1" "August 2019" "hledger-ui 1.15.99" "hledger User Manuals" .TH "hledger-ui" "1" "December 2019" "hledger-ui 1.16" "hledger User Manuals"

View File

@ -3,8 +3,8 @@ This is hledger-ui.info, produced by makeinfo version 6.5 from stdin.
 
File: hledger-ui.info, Node: Top, Next: OPTIONS, Up: (dir) File: hledger-ui.info, Node: Top, Next: OPTIONS, Up: (dir)
hledger-ui(1) hledger-ui 1.15.99 hledger-ui(1) hledger-ui 1.16
******************************** *****************************
hledger-ui is hledger's terminal interface, providing an efficient hledger-ui is hledger's terminal interface, providing an efficient
full-window text UI for viewing accounts and transactions, and some full-window text UI for viewing accounts and transactions, and some
@ -423,19 +423,19 @@ to cancel the reload attempt.)
 
Tag Table: Tag Table:
Node: Top71 Node: Top71
Node: OPTIONS1103 Node: OPTIONS1097
Ref: #options1200 Ref: #options1194
Node: KEYS4591 Node: KEYS4585
Ref: #keys4686 Ref: #keys4680
Node: SCREENS8993 Node: SCREENS8987
Ref: #screens9078 Ref: #screens9072
Node: Accounts screen9168 Node: Accounts screen9162
Ref: #accounts-screen9296 Ref: #accounts-screen9290
Node: Register screen11512 Node: Register screen11506
Ref: #register-screen11667 Ref: #register-screen11661
Node: Transaction screen13663 Node: Transaction screen13657
Ref: #transaction-screen13821 Ref: #transaction-screen13815
Node: Error screen14691 Node: Error screen14685
Ref: #error-screen14813 Ref: #error-screen14807
 
End Tag Table End Tag Table

View File

@ -431,4 +431,4 @@ SEE ALSO
hledger-ui 1.15.99 August 2019 hledger-ui(1) hledger-ui 1.16 December 2019 hledger-ui(1)

View File

@ -4,4 +4,4 @@ m4_dnl Program version. Updated by make setversion.
m4_define({{_version_}}, {{1.16}})m4_dnl m4_define({{_version_}}, {{1.16}})m4_dnl
m4_dnl m4_dnl
m4_dnl Date to show in man pages. Updated by make setdate. m4_dnl Date to show in man pages. Updated by make setdate.
m4_define({{_monthyear_}}, {{August 2019}})m4_dnl m4_define({{_monthyear_}}, {{December 2019}})m4_dnl

View File

@ -1,5 +1,5 @@
.TH "hledger-web" "1" "August 2019" "hledger-web 1.15.99" "hledger User Manuals" .TH "hledger-web" "1" "December 2019" "hledger-web 1.16" "hledger User Manuals"

View File

@ -3,8 +3,8 @@ This is hledger-web.info, produced by makeinfo version 6.5 from stdin.
 
File: hledger-web.info, Node: Top, Next: OPTIONS, Up: (dir) File: hledger-web.info, Node: Top, Next: OPTIONS, Up: (dir)
hledger-web(1) hledger-web 1.15.99 hledger-web(1) hledger-web 1.16
********************************** *******************************
hledger-web is hledger's web interface. It starts a simple web hledger-web is hledger's web interface. It starts a simple web
application for browsing and adding transactions, and optionally opens application for browsing and adding transactions, and optionally opens
@ -340,15 +340,15 @@ to serve the API.
 
Tag Table: Tag Table:
Node: Top72 Node: Top72
Node: OPTIONS1361 Node: OPTIONS1355
Ref: #options1466 Ref: #options1460
Node: PERMISSIONS6745 Node: PERMISSIONS6739
Ref: #permissions6884 Ref: #permissions6878
Node: EDITING UPLOADING DOWNLOADING8096 Node: EDITING UPLOADING DOWNLOADING8090
Ref: #editing-uploading-downloading8277 Ref: #editing-uploading-downloading8271
Node: RELOADING9111 Node: RELOADING9105
Ref: #reloading9245 Ref: #reloading9239
Node: JSON API9678 Node: JSON API9672
Ref: #json-api9772 Ref: #json-api9766
 
End Tag Table End Tag Table

View File

@ -357,4 +357,4 @@ SEE ALSO
hledger-web 1.15.99 August 2019 hledger-web(1) hledger-web 1.16 December 2019 hledger-web(1)

View File

@ -4,4 +4,4 @@ m4_dnl Program version. Updated by make setversion.
m4_define({{_version_}}, {{1.16}})m4_dnl m4_define({{_version_}}, {{1.16}})m4_dnl
m4_dnl m4_dnl
m4_dnl Date to show in man pages. Updated by make setdate. m4_dnl Date to show in man pages. Updated by make setdate.
m4_define({{_monthyear_}}, {{September 2019}})m4_dnl m4_define({{_monthyear_}}, {{December 2019}})m4_dnl

View File

@ -1,6 +1,6 @@
.\"t .\"t
.TH "hledger" "1" "September 2019" "hledger 1.15.99" "hledger User Manuals" .TH "hledger" "1" "December 2019" "hledger 1.16" "hledger User Manuals"

View File

@ -3,8 +3,8 @@ This is hledger.info, produced by makeinfo version 6.5 from stdin.
 
File: hledger.info, Node: Top, Next: EXAMPLES, Up: (dir) File: hledger.info, Node: Top, Next: EXAMPLES, Up: (dir)
hledger(1) hledger 1.15.99 hledger(1) hledger 1.16
************************** ***********************
This is hledger's command-line interface (there are also terminal and This is hledger's command-line interface (there are also terminal and
web interfaces). Its basic function is to read a plain text file web interfaces). Its basic function is to read a plain text file
@ -3189,179 +3189,179 @@ hledger-check.hs checks more powerful account balance assertions.
 
Tag Table: Tag Table:
Node: Top68 Node: Top68
Node: EXAMPLES1893 Node: EXAMPLES1887
Ref: #examples1993 Ref: #examples1987
Node: OPTIONS3639 Node: OPTIONS3633
Ref: #options3741 Ref: #options3735
Node: General options4140 Node: General options4134
Ref: #general-options4265 Ref: #general-options4259
Node: Command options6919 Node: Command options6913
Ref: #command-options7070 Ref: #command-options7064
Node: Command arguments7468 Node: Command arguments7462
Ref: #command-arguments7622 Ref: #command-arguments7616
Node: Argument files7743 Node: Argument files7737
Ref: #argument-files7919 Ref: #argument-files7913
Node: Special characters in arguments and queries8185 Node: Special characters in arguments and queries8179
Ref: #special-characters-in-arguments-and-queries8419 Ref: #special-characters-in-arguments-and-queries8413
Node: More escaping8870 Node: More escaping8864
Ref: #more-escaping9032 Ref: #more-escaping9026
Node: Even more escaping9328 Node: Even more escaping9322
Ref: #even-more-escaping9522 Ref: #even-more-escaping9516
Node: Less escaping10193 Node: Less escaping10187
Ref: #less-escaping10355 Ref: #less-escaping10349
Node: Command line tips10600 Node: Command line tips10594
Ref: #command-line-tips10786 Ref: #command-line-tips10780
Node: Unicode characters11163 Node: Unicode characters11157
Ref: #unicode-characters11319 Ref: #unicode-characters11313
Node: Input files12731 Node: Input files12725
Ref: #input-files12867 Ref: #input-files12861
Node: Smart dates14796 Node: Smart dates14790
Ref: #smart-dates14937 Ref: #smart-dates14931
Node: Report start & end date16343 Node: Report start & end date16337
Ref: #report-start-end-date16515 Ref: #report-start-end-date16509
Node: Report intervals17939 Node: Report intervals17933
Ref: #report-intervals18104 Ref: #report-intervals18098
Node: Period expressions18494 Node: Period expressions18488
Ref: #period-expressions18654 Ref: #period-expressions18648
Node: Depth limiting22609 Node: Depth limiting22603
Ref: #depth-limiting22753 Ref: #depth-limiting22747
Node: Pivoting23095 Node: Pivoting23089
Ref: #pivoting23218 Ref: #pivoting23212
Node: Valuation24894 Node: Valuation24888
Ref: #valuation25023 Ref: #valuation25017
Node: -B Cost25203 Node: -B Cost25197
Ref: #b-cost25314 Ref: #b-cost25308
Node: -V Market value25512 Node: -V Market value25506
Ref: #v-market-value25686 Ref: #v-market-value25680
Node: -X Market value in specified commodity27118 Node: -X Market value in specified commodity27112
Ref: #x-market-value-in-specified-commodity27357 Ref: #x-market-value-in-specified-commodity27351
Node: --value Flexible valuation27533 Node: --value Flexible valuation27527
Ref: #value-flexible-valuation27759 Ref: #value-flexible-valuation27753
Node: Effect of --value on reports31949 Node: Effect of --value on reports31943
Ref: #effect-of---value-on-reports32165 Ref: #effect-of---value-on-reports32159
Node: Combining -B -V -X --value37096 Node: Combining -B -V -X --value37090
Ref: #combining--b--v--x---value37279 Ref: #combining--b--v--x---value37273
Node: Output destination37315 Node: Output destination37309
Ref: #output-destination37467 Ref: #output-destination37461
Node: Output format37750 Node: Output format37744
Ref: #output-format37902 Ref: #output-format37896
Node: Regular expressions38287 Node: Regular expressions38281
Ref: #regular-expressions38424 Ref: #regular-expressions38418
Node: QUERIES39785 Node: QUERIES39779
Ref: #queries39887 Ref: #queries39881
Node: COMMANDS43849 Node: COMMANDS43843
Ref: #commands43961 Ref: #commands43955
Node: accounts45025 Node: accounts45019
Ref: #accounts45123 Ref: #accounts45117
Node: activity45822 Node: activity45816
Ref: #activity45932 Ref: #activity45926
Node: add46315 Node: add46309
Ref: #add46414 Ref: #add46408
Node: balance49159 Node: balance49153
Ref: #balance49270 Ref: #balance49264
Node: Classic balance report50728 Node: Classic balance report50722
Ref: #classic-balance-report50901 Ref: #classic-balance-report50895
Node: Customising the classic balance report52270 Node: Customising the classic balance report52264
Ref: #customising-the-classic-balance-report52498 Ref: #customising-the-classic-balance-report52492
Node: Colour support54574 Node: Colour support54568
Ref: #colour-support54741 Ref: #colour-support54735
Node: Flat mode54914 Node: Flat mode54908
Ref: #flat-mode55062 Ref: #flat-mode55056
Node: Depth limited balance reports55475 Node: Depth limited balance reports55469
Ref: #depth-limited-balance-reports55660 Ref: #depth-limited-balance-reports55654
Node: Percentages56116 Node: Percentages56110
Ref: #percentages56282 Ref: #percentages56276
Node: Multicolumn balance report57419 Node: Multicolumn balance report57413
Ref: #multicolumn-balance-report57599 Ref: #multicolumn-balance-report57593
Node: Budget report62913 Node: Budget report62907
Ref: #budget-report63056 Ref: #budget-report63050
Node: Nested budgets68258 Node: Nested budgets68252
Ref: #nested-budgets68370 Ref: #nested-budgets68364
Ref: #output-format-171850 Ref: #output-format-171844
Node: balancesheet71928 Node: balancesheet71922
Ref: #balancesheet72064 Ref: #balancesheet72058
Node: balancesheetequity73447 Node: balancesheetequity73441
Ref: #balancesheetequity73596 Ref: #balancesheetequity73590
Node: cashflow74157 Node: cashflow74151
Ref: #cashflow74285 Ref: #cashflow74279
Node: check-dates75381 Node: check-dates75375
Ref: #check-dates75508 Ref: #check-dates75502
Node: check-dupes75787 Node: check-dupes75781
Ref: #check-dupes75911 Ref: #check-dupes75905
Node: close76204 Node: close76198
Ref: #close76318 Ref: #close76312
Node: commodities79905 Node: commodities79899
Ref: #commodities80032 Ref: #commodities80026
Node: descriptions80114 Node: descriptions80108
Ref: #descriptions80242 Ref: #descriptions80236
Node: diff80423 Node: diff80417
Ref: #diff80529 Ref: #diff80523
Node: files81576 Node: files81570
Ref: #files81676 Ref: #files81670
Node: help81823 Node: help81817
Ref: #help81923 Ref: #help81917
Node: import83004 Node: import82998
Ref: #import83118 Ref: #import83112
Node: Importing balance assignments84011 Node: Importing balance assignments84005
Ref: #importing-balance-assignments84159 Ref: #importing-balance-assignments84153
Node: incomestatement84808 Node: incomestatement84802
Ref: #incomestatement84941 Ref: #incomestatement84935
Node: notes86345 Node: notes86339
Ref: #notes86458 Ref: #notes86452
Node: payees86584 Node: payees86578
Ref: #payees86690 Ref: #payees86684
Node: prices86848 Node: prices86842
Ref: #prices86954 Ref: #prices86948
Node: print87295 Node: print87289
Ref: #print87405 Ref: #print87399
Node: print-unique91898 Node: print-unique91892
Ref: #print-unique92024 Ref: #print-unique92018
Node: register92309 Node: register92303
Ref: #register92436 Ref: #register92430
Node: Custom register output96608 Node: Custom register output96602
Ref: #custom-register-output96737 Ref: #custom-register-output96731
Node: register-match97999 Node: register-match97993
Ref: #register-match98133 Ref: #register-match98127
Node: rewrite98484 Node: rewrite98478
Ref: #rewrite98599 Ref: #rewrite98593
Node: Re-write rules in a file100454 Node: Re-write rules in a file100448
Ref: #re-write-rules-in-a-file100588 Ref: #re-write-rules-in-a-file100582
Node: Diff output format101798 Node: Diff output format101792
Ref: #diff-output-format101967 Ref: #diff-output-format101961
Node: rewrite vs print --auto103059 Node: rewrite vs print --auto103053
Ref: #rewrite-vs.-print---auto103238 Ref: #rewrite-vs.-print---auto103232
Node: roi103794 Node: roi103788
Ref: #roi103892 Ref: #roi103886
Node: stats104904 Node: stats104898
Ref: #stats105003 Ref: #stats104997
Node: tags105791 Node: tags105785
Ref: #tags105889 Ref: #tags105883
Node: test106183 Node: test106177
Ref: #test106267 Ref: #test106261
Node: ADD-ON COMMANDS107014 Node: ADD-ON COMMANDS107008
Ref: #add-on-commands107124 Ref: #add-on-commands107118
Node: Official add-ons108412 Node: Official add-ons108406
Ref: #official-add-ons108552 Ref: #official-add-ons108546
Node: ui108632 Node: ui108626
Ref: #ui108719 Ref: #ui108713
Node: web108773 Node: web108767
Ref: #web108862 Ref: #web108856
Node: Third party add-ons108908 Node: Third party add-ons108902
Ref: #third-party-add-ons109083 Ref: #third-party-add-ons109077
Ref: #diff-1109242 Ref: #diff-1109236
Node: iadd109341 Node: iadd109335
Ref: #iadd109451 Ref: #iadd109445
Node: interest109533 Node: interest109527
Ref: #interest109654 Ref: #interest109648
Node: irr109749 Node: irr109743
Ref: #irr109847 Ref: #irr109841
Node: Experimental add-ons109978 Node: Experimental add-ons109972
Ref: #experimental-add-ons110130 Ref: #experimental-add-ons110124
Node: autosync110378 Node: autosync110372
Ref: #autosync110489 Ref: #autosync110483
Node: chart110728 Node: chart110722
Ref: #chart110847 Ref: #chart110841
Node: check110918 Node: check110912
Ref: #check111020 Ref: #check111014
 
End Tag Table End Tag Table

View File

@ -2819,4 +2819,4 @@ SEE ALSO
hledger 1.15.99 September 2019 hledger(1) hledger 1.16 December 2019 hledger(1)