├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── acctree.go ├── api ├── Makefile ├── cmdoptions.go ├── colors.go ├── const.go ├── filterexpr.go ├── filterexpr_test.go ├── interface.go ├── util.go └── util_test.go ├── argdates.go ├── argparse.go ├── dblentry ├── Makefile ├── accounts.go ├── comment.go ├── commodity.go ├── datastore.go ├── db.go ├── db_test.go ├── directive.go ├── doubleentry.go ├── firstpass.go ├── lcp.go ├── payee.go ├── posting.go ├── price.go ├── tag.go ├── tokens.go ├── transaction.go ├── ydate.go └── ydate_test.go ├── files.go ├── firstpass.go ├── lcs.go ├── lcs_test.go ├── main.go ├── reports ├── Makefile ├── indent.go ├── rcformat.go ├── report_balance.go ├── report_equity.go ├── report_list.go ├── report_passbook.go ├── report_print.go ├── report_register.go └── reporter.go ├── secondpass.go └── testdata ├── 0_test.go ├── Makefile ├── acctree.ldg ├── acctypeerr1.ldg ├── acctypeerr2.ldg ├── acctypeerr3.ldg ├── acctypeerr4.ldg ├── auxdate.ldg ├── balassert.ldg ├── balerr1.ldg ├── balerr2.ldg ├── basic.ldg ├── beginend.ldg ├── cash.ldg ├── comment.ldg ├── commname.ldg ├── date7.ldg ├── dateerr1.ldg ├── dateerr2.ldg ├── dateerr3.ldg ├── dates.ldg ├── dirtaccount1.ldg ├── dirtaccount2.ldg ├── dirtalias.ldg ├── dirtaliaserr.ldg ├── dirtbucket.ldg ├── dirtcapture.ldg ├── dirtcomm1.ldg ├── dirtcomm2.ldg ├── dirtcommerr1.ldg ├── dirtwithacc.ldg ├── dirtwithcomm.ldg ├── dirtwithoacc.ldg ├── dirtwithocomm.ldg ├── drewr.ldg ├── drewr3.ldg ├── elidingamount1.ldg ├── elidingamount2.ldg ├── emptytrans.ldg ├── equity.ldg ├── error1.ldg ├── error2.ldg ├── error3.ldg ├── explicitcost.ldg ├── first.ldg ├── fixprice.ldg ├── including.ldg ├── lotdate.ldg ├── lotprice.ldg ├── lotpriceerr.ldg ├── matchpayee.ldg ├── mixedcomm1.ldg ├── mixedcomm2.ldg ├── mixedcomm3.ldg ├── nomatchpayee.ldg ├── notes.ldg ├── payeemeta.ldg ├── pl.ldg ├── postingcost.ldg ├── postingerr.ldg ├── refdata ├── acctree.balance.nosubtotal.ref ├── acctree.balance.ref ├── acctree.dcbalance.ref ├── acctree.equity.ref ├── acctree.register.ref ├── acctypeerr1.ref ├── acctypeerr2.ref ├── acctypeerr3.ref ├── acctypeerr4.ref ├── atprice.balance.ref ├── atprice.register.ref ├── auxdate.balance.ref ├── auxdate.equity.ref ├── auxdate.register.ref ├── balassert.balance.ref ├── balassert.equity.ref ├── balassert.passbook.ref ├── balassert.register.ref ├── balerr1.ref ├── balerr2.ref ├── basic.balance.ref ├── basic.dcbalance.ref ├── basic.equity.ref ├── basic.register.dc.ref ├── basic.register.ref ├── beginend.balance1.ref ├── beginend.balance2.ref ├── beginend.balance3.ref ├── beginend.balance4.ref ├── beginend.equity1.ref ├── beginend.equity2.ref ├── beginend.equity3.ref ├── beginend.equity4.ref ├── beginend.passbook1.ref ├── beginend.passbook2.ref ├── beginend.passbook3.ref ├── beginend.passbook4.ref ├── beginend.register1.dc.ref ├── beginend.register1.ref ├── beginend.register2.dc.ref ├── beginend.register2.ref ├── beginend.register3.dc.ref ├── beginend.register3.ref ├── beginend.register4.dc.ref ├── beginend.register4.ref ├── cmdarg_f.ref ├── cmdarg_fy.ref ├── cmdarg_o.ref ├── commname.balance.ref ├── commname.register.ref ├── date7.equity.ref ├── date7.passbook.ref ├── date7.register.ref ├── dateerr1.print.ref ├── dateerr2.print.ref ├── dateerr3.print.ref ├── dates.balance.nosubtotal.ref ├── dates.balance.ref ├── dates.dcbalance.ref ├── dates.equity.ref ├── dates.passbook.bypayee1.ref ├── dates.passbook.bypayee2.ref ├── dates.passbook1.ref ├── dates.passbook2.ref ├── dates.register.bypayee.dc.ref ├── dates.register.bypayee.ref ├── dates.register.bypayee1.dc.ref ├── dates.register.bypayee1.ref ├── dates.register.bypayee2.dc.ref ├── dates.register.bypayee2.ref ├── dates.register.detailed1.ref ├── dates.register.detailed2.ref ├── dates.register.subtotal1.ref ├── dates.register.subtotal2.ref ├── dates.register1.ref ├── dates.register2.ref ├── dates.register3.dc.ref ├── dates.register3.ref ├── dirtaccount1.list.ref ├── dirtaccount1.vlist.ref ├── dirtaccount2.list.ref ├── dirtaccount2.vlist.ref ├── dirtalias.list.ref ├── dirtalias.vlist.ref ├── dirtaliaserr.ref ├── dirtbucket.balance.ref ├── dirtbucket.register.ref ├── dirtcapture.balance.ref ├── dirtcapture.register.ref ├── dirtcomm1.list.ref ├── dirtcomm1.outlist.ref ├── dirtcomm1.outvlist.ref ├── dirtcomm1.vlist.ref ├── dirtcomm2.list.ref ├── dirtcomm2.vlist.ref ├── dirtcommerr1.ref ├── dirtwithacc.balance.ref ├── dirtwithacc.register.ref ├── dirtwithcomm.balance.ref ├── dirtwithcomm.register.ref ├── dirtwithoacc.balance.ref ├── dirtwithoacc.register.ref ├── dirtwithocomm.balance.ref ├── dirtwithocomm.register.ref ├── drewr.register.daily1.ref ├── drewr.register.daily2.ref ├── drewr.register.daily3.ref ├── drewr.register.daily4.ref ├── drewr.register.dow1.ref ├── drewr.register.dow2.ref ├── drewr.register.dow3.ref ├── drewr.register.dow4.ref ├── drewr.register.monthly1.ref ├── drewr.register.monthly2.ref ├── drewr.register.monthly3.ref ├── drewr.register.monthly4.ref ├── drewr.register.quarterly1.ref ├── drewr.register.quarterly2.ref ├── drewr.register.quarterly3.ref ├── drewr.register.quarterly4.ref ├── drewr.register.weekly1.ref ├── drewr.register.weekly2.ref ├── drewr.register.weekly3.ref ├── drewr.register.weekly4.ref ├── drewr.register.yearly1.ref ├── drewr.register.yearly2.ref ├── drewr.register.yearly3.ref ├── drewr.register.yearly4.ref ├── elidingamount1.balance.ref ├── elidingamount1.equity.ref ├── elidingamount1.register.dc.ref ├── elidingamount1.register.ref ├── elidingamount2.balance.ref ├── elidingamount2.equity.ref ├── elidingamount2.passbook.ref ├── elidingamount2.register.dc.ref ├── elidingamount2.register.ref ├── emptytrans.ref ├── error1.ref ├── error2.strict.ref ├── explicitcost.balance.ref ├── explicitcost.dcbalance.ref ├── explicitcost.equity.ref ├── explicitcost.register.dc.ref ├── explicitcost.register.ref ├── first.balance1.ref ├── first.balance2.ref ├── first.balance3.ref ├── first.equity.ref ├── first.listerr.ref ├── first.register1.ref ├── first.register10.ref ├── first.register11.ref ├── first.register12.ref ├── first.register13.ref ├── first.register14.ref ├── first.register2.ref ├── first.register3.ref ├── first.register4.ref ├── first.register5.ref ├── first.register6.ref ├── first.register7.ref ├── first.register8.ref ├── first.register9.ref ├── fixprice.passbook.ref ├── help.ref ├── including.balance.ref ├── including.register.ref ├── lotdate.print.ref ├── lotprice.balance.ref ├── lotprice.equity.ref ├── lotprice.register.ref ├── lotpriceerr.ref ├── matchpayee.balance.ref ├── matchpayee.register.ref ├── mixedcomm.register.subtotal.ref ├── mixedcomm1.balance.ref ├── mixedcomm1.dcbalance.ref ├── mixedcomm1.equity.ref ├── mixedcomm1.passbook.ref ├── mixedcomm1.register.ref ├── mixedcomm1.register.subtotal1.ref ├── mixedcomm1.register.subtotal2.ref ├── mixedcomm2.balance.ref ├── mixedcomm2.equity.ref ├── mixedcomm2.register.ref ├── mixedcomm2.register.subtotal1.ref ├── mixedcomm2.register.subtotal2.ref ├── mixedcomm3.balance.ref ├── mixedcomm3.equity.ref ├── mixedcomm3.passbook.ref ├── mixedcomm3.register.ref ├── mixedcomm3.register.subtotal1.ref ├── mixedcomm3.register.subtotal2.ref ├── nomatchpayee.ref ├── notes.print.ref ├── payeemeta.register.dc.ref ├── payeemeta.register.ref ├── pl.balance.nopl.ref ├── pl.balance.onlypl.ref ├── postingerr.ref ├── reimburse.balance1.ref ├── reimburse.dcbalance.ref ├── reimburse.equity.ref ├── reimburse.register1.ref ├── second.balance1.ref ├── second.balance2.ref ├── second.balance3.ref ├── second.balance4.ref ├── second.balance5.ref ├── second.balance6.ref ├── second.balance7.ref ├── share.balance.ref ├── share.equity.ref ├── share.register.ref ├── totalcost.balance.ref ├── totalcost.equity.ref ├── totalcost.register.dc.ref ├── totalcost.register.ref ├── transcode.balance.ref ├── transcode.equity.ref ├── transcode.register.ref ├── trip.balance.ref ├── trip.dcbalance.ref ├── trip.equity.ref ├── trip.register.ref ├── unbalanced1.ref ├── unbalanced2.ref ├── unbalanced3.ref ├── unbalanced4.balance.ref ├── unbalanced4.equity.ref ├── unbalanced4.passbook1.ref ├── unbalanced4.passbook2.ref ├── unbalanced4.register.ref ├── unmatchpayee.ref ├── version.ref └── zerosource.balance.ref ├── reimburse.ldg ├── second.ldg ├── share.ldg ├── totalcost.ldg ├── transcode.ldg ├── trip.ldg ├── unbalanced1.ldg ├── unbalanced2.ldg ├── unbalanced3.ldg ├── unbalanced4.ldg ├── unmatchpayee.ldg ├── virtual.ldg └── zerosource.ldg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/README.md -------------------------------------------------------------------------------- /acctree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/acctree.go -------------------------------------------------------------------------------- /api/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/Makefile -------------------------------------------------------------------------------- /api/cmdoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/cmdoptions.go -------------------------------------------------------------------------------- /api/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/colors.go -------------------------------------------------------------------------------- /api/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/const.go -------------------------------------------------------------------------------- /api/filterexpr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/filterexpr.go -------------------------------------------------------------------------------- /api/filterexpr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/filterexpr_test.go -------------------------------------------------------------------------------- /api/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/interface.go -------------------------------------------------------------------------------- /api/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/util.go -------------------------------------------------------------------------------- /api/util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/api/util_test.go -------------------------------------------------------------------------------- /argdates.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/argdates.go -------------------------------------------------------------------------------- /argparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/argparse.go -------------------------------------------------------------------------------- /dblentry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/Makefile -------------------------------------------------------------------------------- /dblentry/accounts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/accounts.go -------------------------------------------------------------------------------- /dblentry/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/comment.go -------------------------------------------------------------------------------- /dblentry/commodity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/commodity.go -------------------------------------------------------------------------------- /dblentry/datastore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/datastore.go -------------------------------------------------------------------------------- /dblentry/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/db.go -------------------------------------------------------------------------------- /dblentry/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/db_test.go -------------------------------------------------------------------------------- /dblentry/directive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/directive.go -------------------------------------------------------------------------------- /dblentry/doubleentry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/doubleentry.go -------------------------------------------------------------------------------- /dblentry/firstpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/firstpass.go -------------------------------------------------------------------------------- /dblentry/lcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/lcp.go -------------------------------------------------------------------------------- /dblentry/payee.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/payee.go -------------------------------------------------------------------------------- /dblentry/posting.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/posting.go -------------------------------------------------------------------------------- /dblentry/price.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/price.go -------------------------------------------------------------------------------- /dblentry/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/tag.go -------------------------------------------------------------------------------- /dblentry/tokens.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/tokens.go -------------------------------------------------------------------------------- /dblentry/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/transaction.go -------------------------------------------------------------------------------- /dblentry/ydate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/ydate.go -------------------------------------------------------------------------------- /dblentry/ydate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/dblentry/ydate_test.go -------------------------------------------------------------------------------- /files.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/files.go -------------------------------------------------------------------------------- /firstpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/firstpass.go -------------------------------------------------------------------------------- /lcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/lcs.go -------------------------------------------------------------------------------- /lcs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/lcs_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/main.go -------------------------------------------------------------------------------- /reports/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/Makefile -------------------------------------------------------------------------------- /reports/indent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/indent.go -------------------------------------------------------------------------------- /reports/rcformat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/rcformat.go -------------------------------------------------------------------------------- /reports/report_balance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/report_balance.go -------------------------------------------------------------------------------- /reports/report_equity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/report_equity.go -------------------------------------------------------------------------------- /reports/report_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/report_list.go -------------------------------------------------------------------------------- /reports/report_passbook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/report_passbook.go -------------------------------------------------------------------------------- /reports/report_print.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/report_print.go -------------------------------------------------------------------------------- /reports/report_register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/report_register.go -------------------------------------------------------------------------------- /reports/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/reports/reporter.go -------------------------------------------------------------------------------- /secondpass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/secondpass.go -------------------------------------------------------------------------------- /testdata/0_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/0_test.go -------------------------------------------------------------------------------- /testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/Makefile -------------------------------------------------------------------------------- /testdata/acctree.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/acctree.ldg -------------------------------------------------------------------------------- /testdata/acctypeerr1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/acctypeerr1.ldg -------------------------------------------------------------------------------- /testdata/acctypeerr2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/acctypeerr2.ldg -------------------------------------------------------------------------------- /testdata/acctypeerr3.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/acctypeerr3.ldg -------------------------------------------------------------------------------- /testdata/acctypeerr4.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/acctypeerr4.ldg -------------------------------------------------------------------------------- /testdata/auxdate.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/auxdate.ldg -------------------------------------------------------------------------------- /testdata/balassert.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/balassert.ldg -------------------------------------------------------------------------------- /testdata/balerr1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/balerr1.ldg -------------------------------------------------------------------------------- /testdata/balerr2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/balerr2.ldg -------------------------------------------------------------------------------- /testdata/basic.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/basic.ldg -------------------------------------------------------------------------------- /testdata/beginend.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/beginend.ldg -------------------------------------------------------------------------------- /testdata/cash.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/cash.ldg -------------------------------------------------------------------------------- /testdata/comment.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/comment.ldg -------------------------------------------------------------------------------- /testdata/commname.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/commname.ldg -------------------------------------------------------------------------------- /testdata/date7.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/date7.ldg -------------------------------------------------------------------------------- /testdata/dateerr1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dateerr1.ldg -------------------------------------------------------------------------------- /testdata/dateerr2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dateerr2.ldg -------------------------------------------------------------------------------- /testdata/dateerr3.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dateerr3.ldg -------------------------------------------------------------------------------- /testdata/dates.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dates.ldg -------------------------------------------------------------------------------- /testdata/dirtaccount1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtaccount1.ldg -------------------------------------------------------------------------------- /testdata/dirtaccount2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtaccount2.ldg -------------------------------------------------------------------------------- /testdata/dirtalias.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtalias.ldg -------------------------------------------------------------------------------- /testdata/dirtaliaserr.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtaliaserr.ldg -------------------------------------------------------------------------------- /testdata/dirtbucket.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtbucket.ldg -------------------------------------------------------------------------------- /testdata/dirtcapture.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtcapture.ldg -------------------------------------------------------------------------------- /testdata/dirtcomm1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtcomm1.ldg -------------------------------------------------------------------------------- /testdata/dirtcomm2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtcomm2.ldg -------------------------------------------------------------------------------- /testdata/dirtcommerr1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtcommerr1.ldg -------------------------------------------------------------------------------- /testdata/dirtwithacc.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtwithacc.ldg -------------------------------------------------------------------------------- /testdata/dirtwithcomm.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtwithcomm.ldg -------------------------------------------------------------------------------- /testdata/dirtwithoacc.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtwithoacc.ldg -------------------------------------------------------------------------------- /testdata/dirtwithocomm.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/dirtwithocomm.ldg -------------------------------------------------------------------------------- /testdata/drewr.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/drewr.ldg -------------------------------------------------------------------------------- /testdata/drewr3.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/drewr3.ldg -------------------------------------------------------------------------------- /testdata/elidingamount1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/elidingamount1.ldg -------------------------------------------------------------------------------- /testdata/elidingamount2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/elidingamount2.ldg -------------------------------------------------------------------------------- /testdata/emptytrans.ldg: -------------------------------------------------------------------------------- 1 | 10/2 TV 2 | -------------------------------------------------------------------------------- /testdata/equity.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/equity.ldg -------------------------------------------------------------------------------- /testdata/error1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/error1.ldg -------------------------------------------------------------------------------- /testdata/error2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/error2.ldg -------------------------------------------------------------------------------- /testdata/error3.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/error3.ldg -------------------------------------------------------------------------------- /testdata/explicitcost.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/explicitcost.ldg -------------------------------------------------------------------------------- /testdata/first.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/first.ldg -------------------------------------------------------------------------------- /testdata/fixprice.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/fixprice.ldg -------------------------------------------------------------------------------- /testdata/including.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/including.ldg -------------------------------------------------------------------------------- /testdata/lotdate.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/lotdate.ldg -------------------------------------------------------------------------------- /testdata/lotprice.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/lotprice.ldg -------------------------------------------------------------------------------- /testdata/lotpriceerr.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/lotpriceerr.ldg -------------------------------------------------------------------------------- /testdata/matchpayee.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/matchpayee.ldg -------------------------------------------------------------------------------- /testdata/mixedcomm1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/mixedcomm1.ldg -------------------------------------------------------------------------------- /testdata/mixedcomm2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/mixedcomm2.ldg -------------------------------------------------------------------------------- /testdata/mixedcomm3.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/mixedcomm3.ldg -------------------------------------------------------------------------------- /testdata/nomatchpayee.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/nomatchpayee.ldg -------------------------------------------------------------------------------- /testdata/notes.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/notes.ldg -------------------------------------------------------------------------------- /testdata/payeemeta.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/payeemeta.ldg -------------------------------------------------------------------------------- /testdata/pl.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/pl.ldg -------------------------------------------------------------------------------- /testdata/postingcost.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/postingcost.ldg -------------------------------------------------------------------------------- /testdata/postingerr.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/postingerr.ldg -------------------------------------------------------------------------------- /testdata/refdata/acctree.balance.nosubtotal.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctree.balance.nosubtotal.ref -------------------------------------------------------------------------------- /testdata/refdata/acctree.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctree.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/acctree.dcbalance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctree.dcbalance.ref -------------------------------------------------------------------------------- /testdata/refdata/acctree.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctree.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/acctree.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctree.register.ref -------------------------------------------------------------------------------- /testdata/refdata/acctypeerr1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctypeerr1.ref -------------------------------------------------------------------------------- /testdata/refdata/acctypeerr2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctypeerr2.ref -------------------------------------------------------------------------------- /testdata/refdata/acctypeerr3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctypeerr3.ref -------------------------------------------------------------------------------- /testdata/refdata/acctypeerr4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/acctypeerr4.ref -------------------------------------------------------------------------------- /testdata/refdata/atprice.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/atprice.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/atprice.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/atprice.register.ref -------------------------------------------------------------------------------- /testdata/refdata/auxdate.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/auxdate.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/auxdate.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/auxdate.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/auxdate.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/auxdate.register.ref -------------------------------------------------------------------------------- /testdata/refdata/balassert.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/balassert.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/balassert.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/balassert.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/balassert.passbook.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/balassert.passbook.ref -------------------------------------------------------------------------------- /testdata/refdata/balassert.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/balassert.register.ref -------------------------------------------------------------------------------- /testdata/refdata/balerr1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/balerr1.ref -------------------------------------------------------------------------------- /testdata/refdata/balerr2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/balerr2.ref -------------------------------------------------------------------------------- /testdata/refdata/basic.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/basic.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/basic.dcbalance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/basic.dcbalance.ref -------------------------------------------------------------------------------- /testdata/refdata/basic.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/basic.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/basic.register.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/basic.register.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/basic.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/basic.register.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.balance1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.balance1.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.balance2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.balance2.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.balance3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.balance3.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.balance4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.balance4.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.equity1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.equity1.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.equity2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.equity2.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.equity3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.equity3.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.equity4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.equity4.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.passbook1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.passbook1.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.passbook2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.passbook2.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.passbook3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.passbook3.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.passbook4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.passbook4.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register1.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register1.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register1.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register2.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register2.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register2.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register3.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register3.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register3.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register4.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register4.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/beginend.register4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/beginend.register4.ref -------------------------------------------------------------------------------- /testdata/refdata/cmdarg_f.ref: -------------------------------------------------------------------------------- 1 | Error: open /a/b/xyz: no such file or directory 2 | -------------------------------------------------------------------------------- /testdata/refdata/cmdarg_fy.ref: -------------------------------------------------------------------------------- 1 | Error: arg `-fy` strconv.Atoi: parsing "abc": invalid syntax 2 | -------------------------------------------------------------------------------- /testdata/refdata/cmdarg_o.ref: -------------------------------------------------------------------------------- 1 | Error: open /a/b/xyz: no such file or directory 2 | -------------------------------------------------------------------------------- /testdata/refdata/commname.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/commname.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/commname.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/commname.register.ref -------------------------------------------------------------------------------- /testdata/refdata/date7.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/date7.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/date7.passbook.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/date7.passbook.ref -------------------------------------------------------------------------------- /testdata/refdata/date7.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/date7.register.ref -------------------------------------------------------------------------------- /testdata/refdata/dateerr1.print.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dateerr1.print.ref -------------------------------------------------------------------------------- /testdata/refdata/dateerr2.print.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dateerr2.print.ref -------------------------------------------------------------------------------- /testdata/refdata/dateerr3.print.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dateerr3.print.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.balance.nosubtotal.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.balance.nosubtotal.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.dcbalance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.dcbalance.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.passbook.bypayee1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.passbook.bypayee1.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.passbook.bypayee2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.passbook.bypayee2.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.passbook1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.passbook1.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.passbook2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.passbook2.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.bypayee.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.bypayee.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.bypayee.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.bypayee.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.bypayee1.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.bypayee1.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.bypayee1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.bypayee1.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.bypayee2.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.bypayee2.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.bypayee2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.bypayee2.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.detailed1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.detailed1.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.detailed2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.detailed2.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.subtotal1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.subtotal1.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register.subtotal2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register.subtotal2.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register1.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register2.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register3.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register3.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/dates.register3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dates.register3.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtaccount1.list.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtaccount1.list.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtaccount1.vlist.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtaccount1.vlist.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtaccount2.list.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtaccount2.list.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtaccount2.vlist.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtaccount2.vlist.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtalias.list.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtalias.list.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtalias.vlist.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtalias.vlist.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtaliaserr.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtaliaserr.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtbucket.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtbucket.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtbucket.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtbucket.register.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcapture.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcapture.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcapture.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcapture.register.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcomm1.list.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcomm1.list.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcomm1.outlist.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcomm1.outlist.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcomm1.outvlist.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcomm1.outvlist.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcomm1.vlist.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcomm1.vlist.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcomm2.list.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcomm2.list.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcomm2.vlist.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtcomm2.vlist.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtcommerr1.ref: -------------------------------------------------------------------------------- 1 | Error: *dblentry.Directive at "dirtcommerr1.ldg":7 : name mismatching "INR" vs "$" 2 | -------------------------------------------------------------------------------- /testdata/refdata/dirtwithacc.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithacc.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtwithacc.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithacc.register.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtwithcomm.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithcomm.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtwithcomm.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithcomm.register.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtwithoacc.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithoacc.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtwithoacc.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithoacc.register.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtwithocomm.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithocomm.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/dirtwithocomm.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/dirtwithocomm.register.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.daily1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.daily1.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.daily2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.daily2.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.daily3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.daily3.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.daily4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.daily4.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.dow1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.dow1.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.dow2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.dow2.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.dow3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.dow3.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.dow4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.dow4.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.monthly1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.monthly1.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.monthly2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.monthly2.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.monthly3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.monthly3.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.monthly4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.monthly4.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.quarterly1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.quarterly1.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.quarterly2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.quarterly2.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.quarterly3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.quarterly3.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.quarterly4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.quarterly4.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.weekly1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.weekly1.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.weekly2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.weekly2.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.weekly3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.weekly3.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.weekly4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.weekly4.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.yearly1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.yearly1.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.yearly2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.yearly2.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.yearly3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.yearly3.ref -------------------------------------------------------------------------------- /testdata/refdata/drewr.register.yearly4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/drewr.register.yearly4.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount1.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount1.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount1.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount1.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount1.register.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount1.register.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount1.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount1.register.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount2.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount2.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount2.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount2.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount2.passbook.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount2.passbook.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount2.register.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount2.register.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/elidingamount2.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/elidingamount2.register.ref -------------------------------------------------------------------------------- /testdata/refdata/emptytrans.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/emptytrans.ref -------------------------------------------------------------------------------- /testdata/refdata/error1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/error1.ref -------------------------------------------------------------------------------- /testdata/refdata/error2.strict.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/error2.strict.ref -------------------------------------------------------------------------------- /testdata/refdata/explicitcost.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/explicitcost.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/explicitcost.dcbalance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/explicitcost.dcbalance.ref -------------------------------------------------------------------------------- /testdata/refdata/explicitcost.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/explicitcost.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/explicitcost.register.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/explicitcost.register.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/explicitcost.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/explicitcost.register.ref -------------------------------------------------------------------------------- /testdata/refdata/first.balance1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.balance1.ref -------------------------------------------------------------------------------- /testdata/refdata/first.balance2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.balance2.ref -------------------------------------------------------------------------------- /testdata/refdata/first.balance3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.balance3.ref -------------------------------------------------------------------------------- /testdata/refdata/first.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/first.listerr.ref: -------------------------------------------------------------------------------- 1 | Error: insufficient arguments to list report 2 | -------------------------------------------------------------------------------- /testdata/refdata/first.register1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register1.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register10.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register10.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register11.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register11.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register12.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register12.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register13.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register13.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register14.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register14.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register2.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register3.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register4.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register5.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register5.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register6.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register6.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register7.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register7.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register8.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register8.ref -------------------------------------------------------------------------------- /testdata/refdata/first.register9.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/first.register9.ref -------------------------------------------------------------------------------- /testdata/refdata/fixprice.passbook.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/fixprice.passbook.ref -------------------------------------------------------------------------------- /testdata/refdata/help.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/help.ref -------------------------------------------------------------------------------- /testdata/refdata/including.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/including.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/including.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/including.register.ref -------------------------------------------------------------------------------- /testdata/refdata/lotdate.print.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/lotdate.print.ref -------------------------------------------------------------------------------- /testdata/refdata/lotprice.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/lotprice.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/lotprice.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/lotprice.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/lotprice.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/lotprice.register.ref -------------------------------------------------------------------------------- /testdata/refdata/lotpriceerr.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/lotpriceerr.ref -------------------------------------------------------------------------------- /testdata/refdata/matchpayee.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/matchpayee.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/matchpayee.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/matchpayee.register.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm.register.subtotal.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm.register.subtotal.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm1.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm1.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm1.dcbalance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm1.dcbalance.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm1.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm1.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm1.passbook.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm1.passbook.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm1.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm1.register.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm1.register.subtotal1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm1.register.subtotal1.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm1.register.subtotal2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm1.register.subtotal2.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm2.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm2.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm2.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm2.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm2.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm2.register.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm2.register.subtotal1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm2.register.subtotal1.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm2.register.subtotal2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm2.register.subtotal2.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm3.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm3.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm3.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm3.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm3.passbook.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm3.passbook.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm3.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm3.register.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm3.register.subtotal1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm3.register.subtotal1.ref -------------------------------------------------------------------------------- /testdata/refdata/mixedcomm3.register.subtotal2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/mixedcomm3.register.subtotal2.ref -------------------------------------------------------------------------------- /testdata/refdata/nomatchpayee.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/nomatchpayee.ref -------------------------------------------------------------------------------- /testdata/refdata/notes.print.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/notes.print.ref -------------------------------------------------------------------------------- /testdata/refdata/payeemeta.register.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/payeemeta.register.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/payeemeta.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/payeemeta.register.ref -------------------------------------------------------------------------------- /testdata/refdata/pl.balance.nopl.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/pl.balance.nopl.ref -------------------------------------------------------------------------------- /testdata/refdata/pl.balance.onlypl.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/pl.balance.onlypl.ref -------------------------------------------------------------------------------- /testdata/refdata/postingerr.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/postingerr.ref -------------------------------------------------------------------------------- /testdata/refdata/reimburse.balance1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/reimburse.balance1.ref -------------------------------------------------------------------------------- /testdata/refdata/reimburse.dcbalance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/reimburse.dcbalance.ref -------------------------------------------------------------------------------- /testdata/refdata/reimburse.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/reimburse.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/reimburse.register1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/reimburse.register1.ref -------------------------------------------------------------------------------- /testdata/refdata/second.balance1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/second.balance1.ref -------------------------------------------------------------------------------- /testdata/refdata/second.balance2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/second.balance2.ref -------------------------------------------------------------------------------- /testdata/refdata/second.balance3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/second.balance3.ref -------------------------------------------------------------------------------- /testdata/refdata/second.balance4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/second.balance4.ref -------------------------------------------------------------------------------- /testdata/refdata/second.balance5.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/second.balance5.ref -------------------------------------------------------------------------------- /testdata/refdata/second.balance6.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/second.balance6.ref -------------------------------------------------------------------------------- /testdata/refdata/second.balance7.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/second.balance7.ref -------------------------------------------------------------------------------- /testdata/refdata/share.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/share.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/share.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/share.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/share.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/share.register.ref -------------------------------------------------------------------------------- /testdata/refdata/totalcost.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/totalcost.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/totalcost.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/totalcost.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/totalcost.register.dc.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/totalcost.register.dc.ref -------------------------------------------------------------------------------- /testdata/refdata/totalcost.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/totalcost.register.ref -------------------------------------------------------------------------------- /testdata/refdata/transcode.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/transcode.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/transcode.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/transcode.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/transcode.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/transcode.register.ref -------------------------------------------------------------------------------- /testdata/refdata/trip.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/trip.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/trip.dcbalance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/trip.dcbalance.ref -------------------------------------------------------------------------------- /testdata/refdata/trip.equity.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/trip.equity.ref -------------------------------------------------------------------------------- /testdata/refdata/trip.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/trip.register.ref -------------------------------------------------------------------------------- /testdata/refdata/unbalanced1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unbalanced1.ref -------------------------------------------------------------------------------- /testdata/refdata/unbalanced2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unbalanced2.ref -------------------------------------------------------------------------------- /testdata/refdata/unbalanced3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unbalanced3.ref -------------------------------------------------------------------------------- /testdata/refdata/unbalanced4.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unbalanced4.balance.ref -------------------------------------------------------------------------------- /testdata/refdata/unbalanced4.equity.ref: -------------------------------------------------------------------------------- 1 | 2 | 2017/Mar/24 Opening Balance 3 | 4 | -------------------------------------------------------------------------------- /testdata/refdata/unbalanced4.passbook1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unbalanced4.passbook1.ref -------------------------------------------------------------------------------- /testdata/refdata/unbalanced4.passbook2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unbalanced4.passbook2.ref -------------------------------------------------------------------------------- /testdata/refdata/unbalanced4.register.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unbalanced4.register.ref -------------------------------------------------------------------------------- /testdata/refdata/unmatchpayee.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/unmatchpayee.ref -------------------------------------------------------------------------------- /testdata/refdata/version.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/version.ref -------------------------------------------------------------------------------- /testdata/refdata/zerosource.balance.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/refdata/zerosource.balance.ref -------------------------------------------------------------------------------- /testdata/reimburse.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/reimburse.ldg -------------------------------------------------------------------------------- /testdata/second.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/second.ldg -------------------------------------------------------------------------------- /testdata/share.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/share.ldg -------------------------------------------------------------------------------- /testdata/totalcost.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/totalcost.ldg -------------------------------------------------------------------------------- /testdata/transcode.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/transcode.ldg -------------------------------------------------------------------------------- /testdata/trip.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/trip.ldg -------------------------------------------------------------------------------- /testdata/unbalanced1.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/unbalanced1.ldg -------------------------------------------------------------------------------- /testdata/unbalanced2.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/unbalanced2.ldg -------------------------------------------------------------------------------- /testdata/unbalanced3.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/unbalanced3.ldg -------------------------------------------------------------------------------- /testdata/unbalanced4.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/unbalanced4.ldg -------------------------------------------------------------------------------- /testdata/unmatchpayee.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/unmatchpayee.ldg -------------------------------------------------------------------------------- /testdata/virtual.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/virtual.ldg -------------------------------------------------------------------------------- /testdata/zerosource.ldg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tn47/goledger/HEAD/testdata/zerosource.ldg --------------------------------------------------------------------------------