mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
James LewisMoss's xml patch & accounts/ conversion.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@3897 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
bf10abdf30
commit
ed81862b36
41
ChangeLog
41
ChangeLog
@ -1,3 +1,38 @@
|
||||
2001-04-05 James LewisMoss <jimdres@mindspring.com>
|
||||
|
||||
* src/test/test-xml-transaction.c: guess what?
|
||||
|
||||
* src/test/test-xml-commodity.c: genericify all over.
|
||||
|
||||
* src/test/test-xml-account.c: genericify all over.
|
||||
|
||||
* src/test/gnc-test-stuff.c (test_load_file): use new generic
|
||||
interface.
|
||||
(test_files_in_dir): same.
|
||||
|
||||
* src/engine/io-gncxml-v2.h (struct sixtp_global_data_v2_struct):
|
||||
remove all the stuff made uneccesary by generification.
|
||||
|
||||
* src/engine/io-gncxml-v2.c (gnc_counter_end_handler): same as below.
|
||||
(generic_callback): new func for generic callback.
|
||||
(gnc_book_load_from_xml_file_v2): use new generic callback
|
||||
mechanism.
|
||||
|
||||
* src/engine/gnc-transaction-xml-v2.c
|
||||
(gnc_transaction_end_handler): same as below.
|
||||
|
||||
* src/engine/gnc-pricedb-xml-v1.c (pricedb_v2_end_handler): same
|
||||
as below.
|
||||
|
||||
* src/engine/gnc-commodity-xml-v2.c (gnc_commodity_end_handler):
|
||||
same as below.
|
||||
|
||||
* src/engine/gnc-account-xml-v2.c (gnc_account_end_handler):
|
||||
genericify the callback mechanism.
|
||||
|
||||
* src/engine/io-gncxml-v2.c (gnc_book_load_from_xml_file_v2): move
|
||||
xaccLogDisable call.
|
||||
|
||||
2001-04-05 Christian Stimming <stimming@tuhh.de>
|
||||
|
||||
* src/scm/html-table.scm (gnc:html-table-remove-last-row!): Added
|
||||
@ -50,6 +85,12 @@
|
||||
explicitly, display (liabilities + equity) to allow people
|
||||
to check balances.
|
||||
|
||||
2001-04-04 James LewisMoss <jimdres@mindspring.com>
|
||||
|
||||
* src/engine/sixtp-dom-parsers.c (dom_tree_to_timespec): use
|
||||
g_free rather than free (ben's find)
|
||||
(dom_tree_to_gnc_numeric): same.
|
||||
|
||||
2001-04-03 Dave Peticolas <dave@krondo.com>
|
||||
|
||||
* src/register/gnome/gnucash-sheet.c: move cursor before showing
|
||||
|
@ -1,192 +1,148 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Assets</name>
|
||||
<guid>52b5942b5beaec856eaca5a75ee71592</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Investments</name>
|
||||
<guid>7ff59d92615cce4d8388d7e179ee3ff6</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Investments</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>52b5942b5beaec856eaca5a75ee71592</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Brokerage Account</name>
|
||||
<guid>f15ec9568727f08a5ebd8f3e66483876</guid>
|
||||
<type>BANK</type>
|
||||
<description>Brokerage Account</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>7ff59d92615cce4d8388d7e179ee3ff6</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond</name>
|
||||
<guid>8196bf0015c25f501338f07a87c512d8</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Bond</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>f15ec9568727f08a5ebd8f3e66483876</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Stock</name>
|
||||
<guid>7d7db9bed07f21fc0b1f50674702aff0</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Stock</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>f15ec9568727f08a5ebd8f3e66483876</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Market Index</name>
|
||||
<guid>fe9db8a7eedf2990e9846f634a922143</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Market Index</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>f15ec9568727f08a5ebd8f3e66483876</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mutual Fund</name>
|
||||
<guid>9da28c1aa7789e84bdc8484ba8f527b3</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Mutual Fund</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>f15ec9568727f08a5ebd8f3e66483876</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Income</name>
|
||||
<guid>9da3c880bd04b9db49eb7f5b06403bda</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Dividend Income</name>
|
||||
<guid>1af1f4894aeab96d840e66254d023b88</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Dividend Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9da3c880bd04b9db49eb7f5b06403bda</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest Income</name>
|
||||
<guid>7943bc59ffbb9a7be4afcd2996147119</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Interest Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9da3c880bd04b9db49eb7f5b06403bda</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond Interest</name>
|
||||
<guid>8ceb4752a11e2d342b9009b343fdba38</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Bond Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>7943bc59ffbb9a7be4afcd2996147119</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expenses</name>
|
||||
<guid>6de23244232785031501171abcc1d4aa</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expenses</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Commissions</name>
|
||||
<guid>77fdffddc79c662c93c482cefa5a4744</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Commissions</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>6de23244232785031501171abcc1d4aa</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">13</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Assets</act:name>
|
||||
<act:id type="guid">52b5942b5beaec856eaca5a75ee71592</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Assets</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Investments</act:name>
|
||||
<act:id type="guid">7ff59d92615cce4d8388d7e179ee3ff6</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Investments</act:description>
|
||||
<act:parent type="guid">52b5942b5beaec856eaca5a75ee71592</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Brokerage Account</act:name>
|
||||
<act:id type="guid">f15ec9568727f08a5ebd8f3e66483876</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Brokerage Account</act:description>
|
||||
<act:parent type="guid">7ff59d92615cce4d8388d7e179ee3ff6</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond</act:name>
|
||||
<act:id type="guid">8196bf0015c25f501338f07a87c512d8</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond</act:description>
|
||||
<act:parent type="guid">f15ec9568727f08a5ebd8f3e66483876</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Stock</act:name>
|
||||
<act:id type="guid">7d7db9bed07f21fc0b1f50674702aff0</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Stock</act:description>
|
||||
<act:parent type="guid">f15ec9568727f08a5ebd8f3e66483876</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Market Index</act:name>
|
||||
<act:id type="guid">fe9db8a7eedf2990e9846f634a922143</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Market Index</act:description>
|
||||
<act:parent type="guid">f15ec9568727f08a5ebd8f3e66483876</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mutual Fund</act:name>
|
||||
<act:id type="guid">9da28c1aa7789e84bdc8484ba8f527b3</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mutual Fund</act:description>
|
||||
<act:parent type="guid">f15ec9568727f08a5ebd8f3e66483876</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Income</act:name>
|
||||
<act:id type="guid">9da3c880bd04b9db49eb7f5b06403bda</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Income</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Dividend Income</act:name>
|
||||
<act:id type="guid">1af1f4894aeab96d840e66254d023b88</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Dividend Income</act:description>
|
||||
<act:parent type="guid">9da3c880bd04b9db49eb7f5b06403bda</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest Income</act:name>
|
||||
<act:id type="guid">7943bc59ffbb9a7be4afcd2996147119</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest Income</act:description>
|
||||
<act:parent type="guid">9da3c880bd04b9db49eb7f5b06403bda</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond Interest</act:name>
|
||||
<act:id type="guid">8ceb4752a11e2d342b9009b343fdba38</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond Interest</act:description>
|
||||
<act:parent type="guid">7943bc59ffbb9a7be4afcd2996147119</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expenses</act:name>
|
||||
<act:id type="guid">6de23244232785031501171abcc1d4aa</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expenses</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Commissions</act:name>
|
||||
<act:id type="guid">77fdffddc79c662c93c482cefa5a4744</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Commissions</act:description>
|
||||
<act:parent type="guid">6de23244232785031501171abcc1d4aa</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,90 +1,72 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Liabilities</name>
|
||||
<guid>33a326fe16ae360f777a94b3f5bdfbdc</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Liabilities</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Loans</name>
|
||||
<guid>023e2343114b3d695feaeb96904e0da6</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Loans</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>33a326fe16ae360f777a94b3f5bdfbdc</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Vehicle Loan</name>
|
||||
<guid>3e5f44fd7bfaa9cae737a4113a749e36</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Vehicle Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>023e2343114b3d695feaeb96904e0da6</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expense</name>
|
||||
<guid>acacdcb998e45fb741766622e8542f0b</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expense</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>9e8495e80ebfb762089be917dff7ab72</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>acacdcb998e45fb741766622e8542f0b</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Vehicle Loan Interest</name>
|
||||
<guid>e9bd8477e27361238d2f53c4fe7594ab</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Vehicle Loan Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9e8495e80ebfb762089be917dff7ab72</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">6</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Liabilities</act:name>
|
||||
<act:id type="guid">33a326fe16ae360f777a94b3f5bdfbdc</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Liabilities</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Loans</act:name>
|
||||
<act:id type="guid">023e2343114b3d695feaeb96904e0da6</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Loans</act:description>
|
||||
<act:parent type="guid">33a326fe16ae360f777a94b3f5bdfbdc</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Vehicle Loan</act:name>
|
||||
<act:id type="guid">3e5f44fd7bfaa9cae737a4113a749e36</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Vehicle Loan</act:description>
|
||||
<act:parent type="guid">023e2343114b3d695feaeb96904e0da6</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expense</act:name>
|
||||
<act:id type="guid">acacdcb998e45fb741766622e8542f0b</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expense</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">9e8495e80ebfb762089be917dff7ab72</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
<act:parent type="guid">acacdcb998e45fb741766622e8542f0b</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Vehicle Loan Interest</act:name>
|
||||
<act:id type="guid">e9bd8477e27361238d2f53c4fe7594ab</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Vehicle Loan Interest</act:description>
|
||||
<act:parent type="guid">9e8495e80ebfb762089be917dff7ab72</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,120 +1,94 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Assets</name>
|
||||
<guid>7b1a39efc6234d1db148baa722c9471e</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Current Assets</name>
|
||||
<guid>1880e89ec9fe82622b8648df481dd2b7</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Current Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>7b1a39efc6234d1db148baa722c9471e</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bank CD</name>
|
||||
<guid>c1620f9c3082e33d8fd559e17f90a122</guid>
|
||||
<type>BANK</type>
|
||||
<description>Bank CD</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>1880e89ec9fe82622b8648df481dd2b7</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Money Market</name>
|
||||
<guid>3a01e5b0132ba26803b49732a3242654</guid>
|
||||
<type>BANK</type>
|
||||
<description>Money Market</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>1880e89ec9fe82622b8648df481dd2b7</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Income</name>
|
||||
<guid>4b3e36f325569b80efc7d3331bdf851b</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest Income</name>
|
||||
<guid>fd131cae797d1fb83c2e2bf57254eca5</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Interest Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4b3e36f325569b80efc7d3331bdf851b</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>CD Interest</name>
|
||||
<guid>28d311f0f38da5e35628e76ad8bcc853</guid>
|
||||
<type>INCOME</type>
|
||||
<description>CD Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>fd131cae797d1fb83c2e2bf57254eca5</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Money Market Interest</name>
|
||||
<guid>dc537946f39e84ccef7ce38f016249af</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Money Market Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>fd131cae797d1fb83c2e2bf57254eca5</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">8</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Assets</act:name>
|
||||
<act:id type="guid">7b1a39efc6234d1db148baa722c9471e</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Assets</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Current Assets</act:name>
|
||||
<act:id type="guid">1880e89ec9fe82622b8648df481dd2b7</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Current Assets</act:description>
|
||||
<act:parent type="guid">7b1a39efc6234d1db148baa722c9471e</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bank CD</act:name>
|
||||
<act:id type="guid">c1620f9c3082e33d8fd559e17f90a122</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bank CD</act:description>
|
||||
<act:parent type="guid">1880e89ec9fe82622b8648df481dd2b7</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Money Market</act:name>
|
||||
<act:id type="guid">3a01e5b0132ba26803b49732a3242654</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Money Market</act:description>
|
||||
<act:parent type="guid">1880e89ec9fe82622b8648df481dd2b7</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Income</act:name>
|
||||
<act:id type="guid">4b3e36f325569b80efc7d3331bdf851b</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Income</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest Income</act:name>
|
||||
<act:id type="guid">fd131cae797d1fb83c2e2bf57254eca5</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest Income</act:description>
|
||||
<act:parent type="guid">4b3e36f325569b80efc7d3331bdf851b</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>CD Interest</act:name>
|
||||
<act:id type="guid">28d311f0f38da5e35628e76ad8bcc853</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>CD Interest</act:description>
|
||||
<act:parent type="guid">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Money Market Interest</act:name>
|
||||
<act:id type="guid">dc537946f39e84ccef7ce38f016249af</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Money Market Interest</act:description>
|
||||
<act:parent type="guid">fd131cae797d1fb83c2e2bf57254eca5</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,33 +1,29 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expenses</name>
|
||||
<guid>ee8238ee2c2ce590160761df09b99b72</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expenses</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Childcare</name>
|
||||
<guid>8999739a6bfc46088a3ea5ec45e5f8a4</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Childcare</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>ee8238ee2c2ce590160761df09b99b72</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">2</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expenses</act:name>
|
||||
<act:id type="guid">ee8238ee2c2ce590160761df09b99b72</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expenses</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Childcare</act:name>
|
||||
<act:id type="guid">8999739a6bfc46088a3ea5ec45e5f8a4</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Childcare</act:description>
|
||||
<act:parent type="guid">ee8238ee2c2ce590160761df09b99b72</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,48 +1,40 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Assets</name>
|
||||
<guid>b3c65be1c5d163746ddc0c506f3f4619</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Investments</name>
|
||||
<guid>d9c796b35784533aee4309e28a3cbfc5</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Investments</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>b3c65be1c5d163746ddc0c506f3f4619</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Currency Trading</name>
|
||||
<guid>9206632307989cb5b244ad5da5d3131b</guid>
|
||||
<type>CURRENCY</type>
|
||||
<description>Currency Trading</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>DEM</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>d9c796b35784533aee4309e28a3cbfc5</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">3</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Assets</act:name>
|
||||
<act:id type="guid">b3c65be1c5d163746ddc0c506f3f4619</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Assets</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Investments</act:name>
|
||||
<act:id type="guid">d9c796b35784533aee4309e28a3cbfc5</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Investments</act:description>
|
||||
<act:parent type="guid">b3c65be1c5d163746ddc0c506f3f4619</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Currency Trading</act:name>
|
||||
<act:id type="guid">9206632307989cb5b244ad5da5d3131b</act:id>
|
||||
<act:type>CURRENCY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>DEM</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Currency Trading</act:description>
|
||||
<act:parent type="guid">d9c796b35784533aee4309e28a3cbfc5</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,90 +1,72 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Liabilities</name>
|
||||
<guid>4e7e8e39487ad4aba0b62c2232c577c5</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Liabilities</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Loans</name>
|
||||
<guid>c3219e37044b0531d66a7b64433b026d</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Loans</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4e7e8e39487ad4aba0b62c2232c577c5</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Education Loan</name>
|
||||
<guid>ddeba367199bd025e00420a19d6f9ae4</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Education Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>c3219e37044b0531d66a7b64433b026d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expenses</name>
|
||||
<guid>fdbf47b39f70e8818f325eee7931039a</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expenses</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>1cfcd30ea97b954ffb550ab87d561033</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>fdbf47b39f70e8818f325eee7931039a</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Education Loan Interest</name>
|
||||
<guid>04e3d970dc60d3920f40b93fce8924a2</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Education Loan Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>1cfcd30ea97b954ffb550ab87d561033</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">6</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Liabilities</act:name>
|
||||
<act:id type="guid">4e7e8e39487ad4aba0b62c2232c577c5</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Liabilities</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Loans</act:name>
|
||||
<act:id type="guid">c3219e37044b0531d66a7b64433b026d</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Loans</act:description>
|
||||
<act:parent type="guid">4e7e8e39487ad4aba0b62c2232c577c5</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Education Loan</act:name>
|
||||
<act:id type="guid">ddeba367199bd025e00420a19d6f9ae4</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Education Loan</act:description>
|
||||
<act:parent type="guid">c3219e37044b0531d66a7b64433b026d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expenses</act:name>
|
||||
<act:id type="guid">fdbf47b39f70e8818f325eee7931039a</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expenses</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">1cfcd30ea97b954ffb550ab87d561033</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
<act:parent type="guid">fdbf47b39f70e8818f325eee7931039a</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Education Loan Interest</act:name>
|
||||
<act:id type="guid">04e3d970dc60d3920f40b93fce8924a2</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Education Loan Interest</act:description>
|
||||
<act:parent type="guid">1cfcd30ea97b954ffb550ab87d561033</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,78 +1,62 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Assets</name>
|
||||
<guid>64b6276c060185131cecbd1ac6218440</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Fixed Assets</name>
|
||||
<guid>9b171f77000bf68dd1ebbaf58336656d</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Fixed Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>64b6276c060185131cecbd1ac6218440</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>House</name>
|
||||
<guid>9205ad6b6482903e5a696602d491c8f5</guid>
|
||||
<type>ASSET</type>
|
||||
<description>House</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9b171f77000bf68dd1ebbaf58336656d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Asset</name>
|
||||
<guid>ad3b239297277c9ef3840c0433cecb18</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Other Asset</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9b171f77000bf68dd1ebbaf58336656d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Vehicle</name>
|
||||
<guid>5913089ffc36df6f0a5d96a5d7a444c0</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Vehicle</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9b171f77000bf68dd1ebbaf58336656d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">5</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Assets</act:name>
|
||||
<act:id type="guid">64b6276c060185131cecbd1ac6218440</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Assets</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Fixed Assets</act:name>
|
||||
<act:id type="guid">9b171f77000bf68dd1ebbaf58336656d</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Fixed Assets</act:description>
|
||||
<act:parent type="guid">64b6276c060185131cecbd1ac6218440</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>House</act:name>
|
||||
<act:id type="guid">9205ad6b6482903e5a696602d491c8f5</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>House</act:description>
|
||||
<act:parent type="guid">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Asset</act:name>
|
||||
<act:id type="guid">ad3b239297277c9ef3840c0433cecb18</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Asset</act:description>
|
||||
<act:parent type="guid">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Vehicle</act:name>
|
||||
<act:id type="guid">5913089ffc36df6f0a5d96a5d7a444c0</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Vehicle</act:description>
|
||||
<act:parent type="guid">9b171f77000bf68dd1ebbaf58336656d</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,90 +1,72 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Liabilities</name>
|
||||
<guid>6664763bd1ea41462cba5ef856d9c00c</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Liabilities</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Loans</name>
|
||||
<guid>2e6e2d91551cff7b1fd8d6eb34c12117</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Loans</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>6664763bd1ea41462cba5ef856d9c00c</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mortgage Loan</name>
|
||||
<guid>4df1b393c218d9047dd22d33d2737e83</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Mortgage Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>2e6e2d91551cff7b1fd8d6eb34c12117</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expenses</name>
|
||||
<guid>2f076f5ae073173a11d33420cd39fa4d</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expenses</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>3dc58d8a51b5deaa22e0c65d81e90346</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>2f076f5ae073173a11d33420cd39fa4d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mortgage Interest</name>
|
||||
<guid>c1e23fa813d3c8c4a8ea1228a7615b79</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Mortgage Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>3dc58d8a51b5deaa22e0c65d81e90346</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">6</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Liabilities</act:name>
|
||||
<act:id type="guid">6664763bd1ea41462cba5ef856d9c00c</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Liabilities</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Loans</act:name>
|
||||
<act:id type="guid">2e6e2d91551cff7b1fd8d6eb34c12117</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Loans</act:description>
|
||||
<act:parent type="guid">6664763bd1ea41462cba5ef856d9c00c</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mortgage Loan</act:name>
|
||||
<act:id type="guid">4df1b393c218d9047dd22d33d2737e83</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mortgage Loan</act:description>
|
||||
<act:parent type="guid">2e6e2d91551cff7b1fd8d6eb34c12117</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expenses</act:name>
|
||||
<act:id type="guid">2f076f5ae073173a11d33420cd39fa4d</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expenses</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">3dc58d8a51b5deaa22e0c65d81e90346</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
<act:parent type="guid">2f076f5ae073173a11d33420cd39fa4d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mortgage Interest</act:name>
|
||||
<act:id type="guid">c1e23fa813d3c8c4a8ea1228a7615b79</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mortgage Interest</act:description>
|
||||
<act:parent type="guid">3dc58d8a51b5deaa22e0c65d81e90346</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,93 +1,73 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expenses</name>
|
||||
<guid>84732f5fdd27b6463d75bf958e3a4b06</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expenses</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Home Repair</name>
|
||||
<guid>fa27de57090e107fa99fe1db53790f23</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Home Repair</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>84732f5fdd27b6463d75bf958e3a4b06</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Insurance</name>
|
||||
<guid>4677fe36914ebcf23758f3bf20686b4a</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>84732f5fdd27b6463d75bf958e3a4b06</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Home Insurance</name>
|
||||
<guid>3b5909f31bda0e0f76149fd600e0cb1d</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Home Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4677fe36914ebcf23758f3bf20686b4a</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Taxes</name>
|
||||
<guid>a931b8ffe2917ff9a069333623da96ca</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Taxes</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>84732f5fdd27b6463d75bf958e3a4b06</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Property Tax</name>
|
||||
<guid>3994b8f5a6a8b2a0a48126fa955e03f7</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Property Tax</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>a931b8ffe2917ff9a069333623da96ca</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">6</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expenses</act:name>
|
||||
<act:id type="guid">84732f5fdd27b6463d75bf958e3a4b06</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expenses</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Home Repair</act:name>
|
||||
<act:id type="guid">fa27de57090e107fa99fe1db53790f23</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Home Repair</act:description>
|
||||
<act:parent type="guid">84732f5fdd27b6463d75bf958e3a4b06</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Insurance</act:name>
|
||||
<act:id type="guid">4677fe36914ebcf23758f3bf20686b4a</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Insurance</act:description>
|
||||
<act:parent type="guid">84732f5fdd27b6463d75bf958e3a4b06</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Home Insurance</act:name>
|
||||
<act:id type="guid">3b5909f31bda0e0f76149fd600e0cb1d</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Home Insurance</act:description>
|
||||
<act:parent type="guid">4677fe36914ebcf23758f3bf20686b4a</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Taxes</act:name>
|
||||
<act:id type="guid">a931b8ffe2917ff9a069333623da96ca</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Taxes</act:description>
|
||||
<act:parent type="guid">84732f5fdd27b6463d75bf958e3a4b06</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Property Tax</act:name>
|
||||
<act:id type="guid">3994b8f5a6a8b2a0a48126fa955e03f7</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Property Tax</act:description>
|
||||
<act:parent type="guid">a931b8ffe2917ff9a069333623da96ca</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,90 +1,72 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Liabilities</name>
|
||||
<guid>8ec79e80d9abf58d78ce3129d3fe3365</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Liabilities</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Loans</name>
|
||||
<guid>b5624a9d1a1b797b87b815774faccfe4</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Loans</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>8ec79e80d9abf58d78ce3129d3fe3365</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Loan</name>
|
||||
<guid>eb79670a4c9b0faab87485b7b2a4abe4</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Other Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>b5624a9d1a1b797b87b815774faccfe4</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expenses</name>
|
||||
<guid>565e52a122e8acc9a67a36e61357e2ae</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expenses</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>4a02c14e992ea79076837c164aa6fc8d</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>565e52a122e8acc9a67a36e61357e2ae</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Interest</name>
|
||||
<guid>f01de45e290ecc29b64d9cb8a733af68</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Other Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4a02c14e992ea79076837c164aa6fc8d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">6</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Liabilities</act:name>
|
||||
<act:id type="guid">8ec79e80d9abf58d78ce3129d3fe3365</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Liabilities</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Loans</act:name>
|
||||
<act:id type="guid">b5624a9d1a1b797b87b815774faccfe4</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Loans</act:description>
|
||||
<act:parent type="guid">8ec79e80d9abf58d78ce3129d3fe3365</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Loan</act:name>
|
||||
<act:id type="guid">eb79670a4c9b0faab87485b7b2a4abe4</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Loan</act:description>
|
||||
<act:parent type="guid">b5624a9d1a1b797b87b815774faccfe4</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expenses</act:name>
|
||||
<act:id type="guid">565e52a122e8acc9a67a36e61357e2ae</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expenses</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">4a02c14e992ea79076837c164aa6fc8d</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
<act:parent type="guid">565e52a122e8acc9a67a36e61357e2ae</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Interest</act:name>
|
||||
<act:id type="guid">f01de45e290ecc29b64d9cb8a733af68</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Interest</act:description>
|
||||
<act:parent type="guid">4a02c14e992ea79076837c164aa6fc8d</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,63 +1,51 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Expenses</name>
|
||||
<guid>9a2b4520f113372f4e576f5b6dc129c6</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Expenses</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Insurance</name>
|
||||
<guid>b79b231807a98cd562c46cf0454e9f25</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9a2b4520f113372f4e576f5b6dc129c6</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Rental Insurance</name>
|
||||
<guid>a4c93c964b8322d534e35b7054cbda4d</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Rental Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>b79b231807a98cd562c46cf0454e9f25</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Rent</name>
|
||||
<guid>c1638a9a48d4d0e1b17d99219a18f34b</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Rent</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9a2b4520f113372f4e576f5b6dc129c6</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">4</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Expenses</act:name>
|
||||
<act:id type="guid">9a2b4520f113372f4e576f5b6dc129c6</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Expenses</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Insurance</act:name>
|
||||
<act:id type="guid">b79b231807a98cd562c46cf0454e9f25</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Insurance</act:description>
|
||||
<act:parent type="guid">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Rental Insurance</act:name>
|
||||
<act:id type="guid">a4c93c964b8322d534e35b7054cbda4d</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Rental Insurance</act:description>
|
||||
<act:parent type="guid">b79b231807a98cd562c46cf0454e9f25</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Rent</act:name>
|
||||
<act:id type="guid">c1638a9a48d4d0e1b17d99219a18f34b</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Rent</act:description>
|
||||
<act:parent type="guid">9a2b4520f113372f4e576f5b6dc129c6</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,114 +1,90 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Assets</name>
|
||||
<guid>e67ef2c52a4eaf3b9d37d317848a5812</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Investments</name>
|
||||
<guid>64cf99f6bafe0a539a5941ea713bdfcd</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Investments</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>e67ef2c52a4eaf3b9d37d317848a5812</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Retirement</name>
|
||||
<guid>4173f3047238f4b5595b11d6161b2f48</guid>
|
||||
<type>BANK</type>
|
||||
<description>Retirement</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<slots>
|
||||
<s>
|
||||
<k>notes</k>
|
||||
<string>IRA, 401(k), or other retirement</string>
|
||||
</s>
|
||||
</slots>
|
||||
<parent>
|
||||
<guid>64cf99f6bafe0a539a5941ea713bdfcd</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond</name>
|
||||
<guid>9053199c1da747555d12272f48c719fd</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Bond</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4173f3047238f4b5595b11d6161b2f48</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Stock</name>
|
||||
<guid>9bf53e9580991e323b297999fddff988</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Stock</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4173f3047238f4b5595b11d6161b2f48</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Market Index</name>
|
||||
<guid>2326b032fe4e8f434159310fccf17091</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Market Index</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4173f3047238f4b5595b11d6161b2f48</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mutual Fund</name>
|
||||
<guid>a62d804729117e74a6c880cecb818b56</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Mutual Fund</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4173f3047238f4b5595b11d6161b2f48</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">7</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Assets</act:name>
|
||||
<act:id type="guid">e67ef2c52a4eaf3b9d37d317848a5812</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Assets</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Investments</act:name>
|
||||
<act:id type="guid">64cf99f6bafe0a539a5941ea713bdfcd</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Investments</act:description>
|
||||
<act:parent type="guid">e67ef2c52a4eaf3b9d37d317848a5812</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Retirement</act:name>
|
||||
<act:id type="guid">4173f3047238f4b5595b11d6161b2f48</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Retirement</act:description>
|
||||
<act:slots>
|
||||
<slot>
|
||||
<slot:key>notes</slot:key>
|
||||
<slot:value type="string">IRA, 401(k), or other retirement</slot:value>
|
||||
</slot>
|
||||
</act:slots>
|
||||
<act:parent type="guid">64cf99f6bafe0a539a5941ea713bdfcd</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond</act:name>
|
||||
<act:id type="guid">9053199c1da747555d12272f48c719fd</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond</act:description>
|
||||
<act:parent type="guid">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Stock</act:name>
|
||||
<act:id type="guid">9bf53e9580991e323b297999fddff988</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Stock</act:description>
|
||||
<act:parent type="guid">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Market Index</act:name>
|
||||
<act:id type="guid">2326b032fe4e8f434159310fccf17091</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Market Index</act:description>
|
||||
<act:parent type="guid">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mutual Fund</act:name>
|
||||
<act:id type="guid">a62d804729117e74a6c880cecb818b56</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mutual Fund</act:description>
|
||||
<act:parent type="guid">4173f3047238f4b5595b11d6161b2f48</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,123 +1,95 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Income</name>
|
||||
<guid>b4fadf6188d7f1ae7e7aa4fa27f5cc95</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Salary (Spouse)</name>
|
||||
<guid>7c4495ff132d100b0aa339ce683200dd</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Salary (Spouse)</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>b4fadf6188d7f1ae7e7aa4fa27f5cc95</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Taxes (Spouse)</name>
|
||||
<guid>3cd0ca7d6b0e5f44e4cde2851c3ff387</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Taxes (Spouse)</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>b4fadf6188d7f1ae7e7aa4fa27f5cc95</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Federal</name>
|
||||
<guid>78df9cf06ee197272a695a4c3044f749</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Federal</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>3cd0ca7d6b0e5f44e4cde2851c3ff387</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Medicare</name>
|
||||
<guid>eba0c095658c7c3a4f4294db9c7392f3</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Medicare</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>3cd0ca7d6b0e5f44e4cde2851c3ff387</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Tax</name>
|
||||
<guid>dea0cf67026749c9a5aa97be4e5cd052</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Other Tax</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>3cd0ca7d6b0e5f44e4cde2851c3ff387</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Social Security</name>
|
||||
<guid>9bd3abb2ed8c4c0d00f8e8ec36d2744d</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Social Security</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>3cd0ca7d6b0e5f44e4cde2851c3ff387</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>State/Province</name>
|
||||
<guid>aa14dbcd622024495a8a972b0f37d13a</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>State/Province</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>3cd0ca7d6b0e5f44e4cde2851c3ff387</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">8</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Income</act:name>
|
||||
<act:id type="guid">b4fadf6188d7f1ae7e7aa4fa27f5cc95</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Income</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Salary (Spouse)</act:name>
|
||||
<act:id type="guid">7c4495ff132d100b0aa339ce683200dd</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Salary (Spouse)</act:description>
|
||||
<act:parent type="guid">b4fadf6188d7f1ae7e7aa4fa27f5cc95</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Taxes (Spouse)</act:name>
|
||||
<act:id type="guid">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Taxes (Spouse)</act:description>
|
||||
<act:parent type="guid">b4fadf6188d7f1ae7e7aa4fa27f5cc95</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Federal</act:name>
|
||||
<act:id type="guid">78df9cf06ee197272a695a4c3044f749</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Federal</act:description>
|
||||
<act:parent type="guid">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Medicare</act:name>
|
||||
<act:id type="guid">eba0c095658c7c3a4f4294db9c7392f3</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Medicare</act:description>
|
||||
<act:parent type="guid">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Tax</act:name>
|
||||
<act:id type="guid">dea0cf67026749c9a5aa97be4e5cd052</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Tax</act:description>
|
||||
<act:parent type="guid">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Social Security</act:name>
|
||||
<act:id type="guid">9bd3abb2ed8c4c0d00f8e8ec36d2744d</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Social Security</act:description>
|
||||
<act:parent type="guid">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>State/Province</act:name>
|
||||
<act:id type="guid">aa14dbcd622024495a8a972b0f37d13a</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>State/Province</act:description>
|
||||
<act:parent type="guid">3cd0ca7d6b0e5f44e4cde2851c3ff387</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,114 +1,90 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Assets</name>
|
||||
<guid>96d9b17add59eb4c7edec7ed241af755</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Assets</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Investments</name>
|
||||
<guid>f46c9f777b1730c6b5f4a1faf9e31708</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Investments</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>96d9b17add59eb4c7edec7ed241af755</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Spouse Retirement</name>
|
||||
<guid>4426b41837adc284f96b291c31022844</guid>
|
||||
<type>BANK</type>
|
||||
<description>Spouse Retirement</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<slots>
|
||||
<s>
|
||||
<k>notes</k>
|
||||
<string>IRA, 401(k), or other retirement</string>
|
||||
</s>
|
||||
</slots>
|
||||
<parent>
|
||||
<guid>f46c9f777b1730c6b5f4a1faf9e31708</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond</name>
|
||||
<guid>c8e7c315502547e51bfdd5a70b5cdd2e</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Bond</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4426b41837adc284f96b291c31022844</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Stock</name>
|
||||
<guid>b8838eb77b9603e035e1f7b440d468ae</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Stock</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4426b41837adc284f96b291c31022844</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Market Index</name>
|
||||
<guid>0ec1a5b402ceea10d95445a2b31c41a1</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Market Index</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4426b41837adc284f96b291c31022844</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mutual Fund</name>
|
||||
<guid>d9ed01f9b8f9845bc3f68f3e0afb021f</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Mutual Fund</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>4426b41837adc284f96b291c31022844</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">7</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Assets</act:name>
|
||||
<act:id type="guid">96d9b17add59eb4c7edec7ed241af755</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Assets</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Investments</act:name>
|
||||
<act:id type="guid">f46c9f777b1730c6b5f4a1faf9e31708</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Investments</act:description>
|
||||
<act:parent type="guid">96d9b17add59eb4c7edec7ed241af755</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Spouse Retirement</act:name>
|
||||
<act:id type="guid">4426b41837adc284f96b291c31022844</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Spouse Retirement</act:description>
|
||||
<act:slots>
|
||||
<slot>
|
||||
<slot:key>notes</slot:key>
|
||||
<slot:value type="string">IRA, 401(k), or other retirement</slot:value>
|
||||
</slot>
|
||||
</act:slots>
|
||||
<act:parent type="guid">f46c9f777b1730c6b5f4a1faf9e31708</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond</act:name>
|
||||
<act:id type="guid">c8e7c315502547e51bfdd5a70b5cdd2e</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond</act:description>
|
||||
<act:parent type="guid">4426b41837adc284f96b291c31022844</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Stock</act:name>
|
||||
<act:id type="guid">b8838eb77b9603e035e1f7b440d468ae</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Stock</act:description>
|
||||
<act:parent type="guid">4426b41837adc284f96b291c31022844</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Market Index</act:name>
|
||||
<act:id type="guid">0ec1a5b402ceea10d95445a2b31c41a1</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Market Index</act:description>
|
||||
<act:parent type="guid">4426b41837adc284f96b291c31022844</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mutual Fund</act:name>
|
||||
<act:id type="guid">d9ed01f9b8f9845bc3f68f3e0afb021f</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mutual Fund</act:description>
|
||||
<act:parent type="guid">4426b41837adc284f96b291c31022844</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,129 +1,103 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Brokerage Account</name>
|
||||
<guid>a4b92830ee9ab7db17221f156bc15d87</guid>
|
||||
<type>BANK</type>
|
||||
<description>Brokerage Account</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond</name>
|
||||
<guid>fbb97d1d8f6ae60d0e699af8c5b8dbfd</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Bond</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>a4b92830ee9ab7db17221f156bc15d87</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Stock</name>
|
||||
<guid>2b85576ddedda530fd80b17451cd37e8</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Stock</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>a4b92830ee9ab7db17221f156bc15d87</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Market Index</name>
|
||||
<guid>d9934aaf4fc86463bb43088df18498ab</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Market Index</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>a4b92830ee9ab7db17221f156bc15d87</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mutual Fund</name>
|
||||
<guid>31f4e66a69252f7b91fbdea85bdd0781</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Mutual Fund</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>a4b92830ee9ab7db17221f156bc15d87</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Dividend Income</name>
|
||||
<guid>741e084d7449e1ec774082ae9c838189</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Dividend Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest Income</name>
|
||||
<guid>d50762c0a7c86969f9ac1ade01ffd224</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Interest Income</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond Interest</name>
|
||||
<guid>e9b8d2fd441762aade7068a3a0a0830d</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Bond Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>d50762c0a7c86969f9ac1ade01ffd224</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Commissions</name>
|
||||
<guid>1e9cae201e379af3ebc90206fc0a823c</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Commissions</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">9</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Brokerage Account</act:name>
|
||||
<act:id type="guid">a4b92830ee9ab7db17221f156bc15d87</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Brokerage Account</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond</act:name>
|
||||
<act:id type="guid">fbb97d1d8f6ae60d0e699af8c5b8dbfd</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond</act:description>
|
||||
<act:parent type="guid">a4b92830ee9ab7db17221f156bc15d87</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Stock</act:name>
|
||||
<act:id type="guid">2b85576ddedda530fd80b17451cd37e8</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Stock</act:description>
|
||||
<act:parent type="guid">a4b92830ee9ab7db17221f156bc15d87</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Market Index</act:name>
|
||||
<act:id type="guid">d9934aaf4fc86463bb43088df18498ab</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Market Index</act:description>
|
||||
<act:parent type="guid">a4b92830ee9ab7db17221f156bc15d87</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mutual Fund</act:name>
|
||||
<act:id type="guid">31f4e66a69252f7b91fbdea85bdd0781</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mutual Fund</act:description>
|
||||
<act:parent type="guid">a4b92830ee9ab7db17221f156bc15d87</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Dividend Income</act:name>
|
||||
<act:id type="guid">741e084d7449e1ec774082ae9c838189</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Dividend Income</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest Income</act:name>
|
||||
<act:id type="guid">d50762c0a7c86969f9ac1ade01ffd224</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest Income</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond Interest</act:name>
|
||||
<act:id type="guid">e9b8d2fd441762aade7068a3a0a0830d</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond Interest</act:description>
|
||||
<act:parent type="guid">d50762c0a7c86969f9ac1ade01ffd224</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Commissions</act:name>
|
||||
<act:id type="guid">1e9cae201e379af3ebc90206fc0a823c</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Commissions</act:description>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,45 +1,39 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Vehicle Loan</name>
|
||||
<guid>ea1d37f0246bcdbbeab144e7753cb092</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Vehicle Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>7643a09ee539628314452ce99da702a4</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Vehicle Loan Interest</name>
|
||||
<guid>d1fda33bb708b037266dbc5d50cf46f3</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Vehicle Loan Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>7643a09ee539628314452ce99da702a4</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">3</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Vehicle Loan</act:name>
|
||||
<act:id type="guid">ea1d37f0246bcdbbeab144e7753cb092</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Vehicle Loan</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">7643a09ee539628314452ce99da702a4</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Vehicle Loan Interest</act:name>
|
||||
<act:id type="guid">d1fda33bb708b037266dbc5d50cf46f3</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Vehicle Loan Interest</act:description>
|
||||
<act:parent type="guid">7643a09ee539628314452ce99da702a4</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,54 +1,48 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bank CD</name>
|
||||
<guid>a2e2f8fd2396ad134fa3721767f56a4a</guid>
|
||||
<type>BANK</type>
|
||||
<description>Bank CD</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Money Market</name>
|
||||
<guid>1c220d832ee37e660837a3753f221079</guid>
|
||||
<type>BANK</type>
|
||||
<description>Money Market</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>CD Interest</name>
|
||||
<guid>a78ff890768703e6d88ea01366a93eff</guid>
|
||||
<type>INCOME</type>
|
||||
<description>CD Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Money Market Interest</name>
|
||||
<guid>88986ef5fbe8e1b9ffda8485fe8c0f93</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Money Market Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">4</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bank CD</act:name>
|
||||
<act:id type="guid">a2e2f8fd2396ad134fa3721767f56a4a</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bank CD</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Money Market</act:name>
|
||||
<act:id type="guid">1c220d832ee37e660837a3753f221079</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Money Market</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>CD Interest</act:name>
|
||||
<act:id type="guid">a78ff890768703e6d88ea01366a93eff</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>CD Interest</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Money Market Interest</act:name>
|
||||
<act:id type="guid">88986ef5fbe8e1b9ffda8485fe8c0f93</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Money Market Interest</act:description>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,18 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Childcare</name>
|
||||
<guid>f37587dab73433d30ce6fa1a2c0ee53d</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Childcare</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">1</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Childcare</act:name>
|
||||
<act:id type="guid">f37587dab73433d30ce6fa1a2c0ee53d</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Childcare</act:description>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,18 +1,18 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Currency Trading</name>
|
||||
<guid>34613c96becb35522e7cdc327e9890e0</guid>
|
||||
<type>CURRENCY</type>
|
||||
<description>Currency Trading</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>DEM</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">1</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Currency Trading</act:name>
|
||||
<act:id type="guid">34613c96becb35522e7cdc327e9890e0</act:id>
|
||||
<act:type>CURRENCY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>DEM</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Currency Trading</act:description>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,45 +1,39 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Education Loan</name>
|
||||
<guid>d1065cfd075a21911c5bf039bc0e452e</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Education Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>b62a1a4aec662956bbd2edf340524768</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Education Loan Interest</name>
|
||||
<guid>142ae0d9e7964c7ebb981ba7f2aa5a19</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Education Loan Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>b62a1a4aec662956bbd2edf340524768</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">3</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Education Loan</act:name>
|
||||
<act:id type="guid">d1065cfd075a21911c5bf039bc0e452e</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Education Loan</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">b62a1a4aec662956bbd2edf340524768</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Education Loan Interest</act:name>
|
||||
<act:id type="guid">142ae0d9e7964c7ebb981ba7f2aa5a19</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Education Loan Interest</act:description>
|
||||
<act:parent type="guid">b62a1a4aec662956bbd2edf340524768</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,42 +1,38 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>House</name>
|
||||
<guid>b7baffa7ae86e9e3471f65ecf7e898e0</guid>
|
||||
<type>ASSET</type>
|
||||
<description>House</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Asset</name>
|
||||
<guid>939effb3e3dba6e80e22d8291916f4dd</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Other Asset</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Vehicle</name>
|
||||
<guid>400fa3023e51a54305046c00a2c3cfb9</guid>
|
||||
<type>ASSET</type>
|
||||
<description>Vehicle</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">3</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>House</act:name>
|
||||
<act:id type="guid">b7baffa7ae86e9e3471f65ecf7e898e0</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>House</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Asset</act:name>
|
||||
<act:id type="guid">939effb3e3dba6e80e22d8291916f4dd</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Asset</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Vehicle</act:name>
|
||||
<act:id type="guid">400fa3023e51a54305046c00a2c3cfb9</act:id>
|
||||
<act:type>ASSET</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Vehicle</act:description>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,45 +1,39 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mortgage Loan</name>
|
||||
<guid>b3f97c81a91eabbd7ff647a980c788e8</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Mortgage Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>92d78493399e05c800764dd576fb46e2</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mortgage Interest</name>
|
||||
<guid>e948e72a223cb0293ae5a27b2d35b324</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Mortgage Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>92d78493399e05c800764dd576fb46e2</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">3</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mortgage Loan</act:name>
|
||||
<act:id type="guid">b3f97c81a91eabbd7ff647a980c788e8</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mortgage Loan</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">92d78493399e05c800764dd576fb46e2</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mortgage Interest</act:name>
|
||||
<act:id type="guid">e948e72a223cb0293ae5a27b2d35b324</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mortgage Interest</act:description>
|
||||
<act:parent type="guid">92d78493399e05c800764dd576fb46e2</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,72 +1,60 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Home Repair</name>
|
||||
<guid>a2a85849ba534678e1970ec49515e6fa</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Home Repair</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Insurance</name>
|
||||
<guid>900dfe72555fdc3cbf6019c5a4603279</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Home Insurance</name>
|
||||
<guid>dc00b72b5d10aebe6b1665499a0cfddb</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Home Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>900dfe72555fdc3cbf6019c5a4603279</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Taxes</name>
|
||||
<guid>9c154b2a736879d3fe5ba128f7a62169</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Taxes</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Property Tax</name>
|
||||
<guid>40cbf9afed3e15e241e52f9e59a2cfd1</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Property Tax</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>9c154b2a736879d3fe5ba128f7a62169</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">5</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Home Repair</act:name>
|
||||
<act:id type="guid">a2a85849ba534678e1970ec49515e6fa</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Home Repair</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Insurance</act:name>
|
||||
<act:id type="guid">900dfe72555fdc3cbf6019c5a4603279</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Insurance</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Home Insurance</act:name>
|
||||
<act:id type="guid">dc00b72b5d10aebe6b1665499a0cfddb</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Home Insurance</act:description>
|
||||
<act:parent type="guid">900dfe72555fdc3cbf6019c5a4603279</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Taxes</act:name>
|
||||
<act:id type="guid">9c154b2a736879d3fe5ba128f7a62169</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Taxes</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Property Tax</act:name>
|
||||
<act:id type="guid">40cbf9afed3e15e241e52f9e59a2cfd1</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Property Tax</act:description>
|
||||
<act:parent type="guid">9c154b2a736879d3fe5ba128f7a62169</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,45 +1,39 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Loan</name>
|
||||
<guid>90f49685a7ff7a186b0571b5550cd586</guid>
|
||||
<type>LIABILITY</type>
|
||||
<description>Other Loan</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Interest</name>
|
||||
<guid>db3ce3c909949a1da026cb2f8336f945</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Interest</name>
|
||||
<guid>fa0d3202fbba65ac3ac92edbbeb7098c</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Other Interest</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>db3ce3c909949a1da026cb2f8336f945</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">3</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Loan</act:name>
|
||||
<act:id type="guid">90f49685a7ff7a186b0571b5550cd586</act:id>
|
||||
<act:type>LIABILITY</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Loan</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Interest</act:name>
|
||||
<act:id type="guid">db3ce3c909949a1da026cb2f8336f945</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Interest</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Interest</act:name>
|
||||
<act:id type="guid">fa0d3202fbba65ac3ac92edbbeb7098c</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Interest</act:description>
|
||||
<act:parent type="guid">db3ce3c909949a1da026cb2f8336f945</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,45 +1,39 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Insurance</name>
|
||||
<guid>bf8401ffdca9c53c3b220fb7e0c3a09e</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Rental Insurance</name>
|
||||
<guid>6d89107d688f6694e2d06039d9c6f692</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Rental Insurance</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>bf8401ffdca9c53c3b220fb7e0c3a09e</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Rent</name>
|
||||
<guid>7b6f5d9dda6295f594dd3efac34d2d46</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Rent</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">3</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Insurance</act:name>
|
||||
<act:id type="guid">bf8401ffdca9c53c3b220fb7e0c3a09e</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Insurance</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Rental Insurance</act:name>
|
||||
<act:id type="guid">6d89107d688f6694e2d06039d9c6f692</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Rental Insurance</act:description>
|
||||
<act:parent type="guid">bf8401ffdca9c53c3b220fb7e0c3a09e</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Rent</act:name>
|
||||
<act:id type="guid">7b6f5d9dda6295f594dd3efac34d2d46</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Rent</act:description>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,84 +1,68 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Retirement</name>
|
||||
<guid>c590a9e1eb345ced982cf86e755db8ec</guid>
|
||||
<type>BANK</type>
|
||||
<description>Retirement</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<slots>
|
||||
<s>
|
||||
<k>notes</k>
|
||||
<string>IRA, 401(k), or other retirement</string>
|
||||
</s>
|
||||
</slots>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond</name>
|
||||
<guid>b87d164410e80db00777f94a7be9d38e</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Bond</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>c590a9e1eb345ced982cf86e755db8ec</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Stock</name>
|
||||
<guid>a3fb341f9fc58086ddc258e656a5b663</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Stock</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>c590a9e1eb345ced982cf86e755db8ec</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Market Index</name>
|
||||
<guid>a01284db52ceea5f2fe12bc1a4b54b5b</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Market Index</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>c590a9e1eb345ced982cf86e755db8ec</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mutual Fund</name>
|
||||
<guid>8abfd5528bb7d1f84d1f4f06d17f274c</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Mutual Fund</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>c590a9e1eb345ced982cf86e755db8ec</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">5</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Retirement</act:name>
|
||||
<act:id type="guid">c590a9e1eb345ced982cf86e755db8ec</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Retirement</act:description>
|
||||
<act:slots>
|
||||
<slot>
|
||||
<slot:key>notes</slot:key>
|
||||
<slot:value type="string">IRA, 401(k), or other retirement</slot:value>
|
||||
</slot>
|
||||
</act:slots>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond</act:name>
|
||||
<act:id type="guid">b87d164410e80db00777f94a7be9d38e</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond</act:description>
|
||||
<act:parent type="guid">c590a9e1eb345ced982cf86e755db8ec</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Stock</act:name>
|
||||
<act:id type="guid">a3fb341f9fc58086ddc258e656a5b663</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Stock</act:description>
|
||||
<act:parent type="guid">c590a9e1eb345ced982cf86e755db8ec</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Market Index</act:name>
|
||||
<act:id type="guid">a01284db52ceea5f2fe12bc1a4b54b5b</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Market Index</act:description>
|
||||
<act:parent type="guid">c590a9e1eb345ced982cf86e755db8ec</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mutual Fund</act:name>
|
||||
<act:id type="guid">8abfd5528bb7d1f84d1f4f06d17f274c</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mutual Fund</act:description>
|
||||
<act:parent type="guid">c590a9e1eb345ced982cf86e755db8ec</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,105 +1,83 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Salary (Spouse)</name>
|
||||
<guid>af17b4af74637c09b67e817ec6f135d5</guid>
|
||||
<type>INCOME</type>
|
||||
<description>Salary (Spouse)</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Taxes (Spouse)</name>
|
||||
<guid>5ee1e7d13ba219536e6ecd3ea899fb2d</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Taxes (Spouse)</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Federal</name>
|
||||
<guid>48a409acca0ef366e1630bb51884add9</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Federal</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>5ee1e7d13ba219536e6ecd3ea899fb2d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Medicare</name>
|
||||
<guid>c3b6e1c886e4f5b6c0bd80984d61d0a5</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Medicare</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>5ee1e7d13ba219536e6ecd3ea899fb2d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Other Tax</name>
|
||||
<guid>e476cd2ff2b912799032d440ba5d10ed</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Other Tax</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>5ee1e7d13ba219536e6ecd3ea899fb2d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Social Security</name>
|
||||
<guid>b285b68902fc18445d4898680e918201</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>Social Security</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>5ee1e7d13ba219536e6ecd3ea899fb2d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>State/Province</name>
|
||||
<guid>e1c80b1cd5d013697b0c31290de68037</guid>
|
||||
<type>EXPENSE</type>
|
||||
<description>State/Province</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>5ee1e7d13ba219536e6ecd3ea899fb2d</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">7</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Salary (Spouse)</act:name>
|
||||
<act:id type="guid">af17b4af74637c09b67e817ec6f135d5</act:id>
|
||||
<act:type>INCOME</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Salary (Spouse)</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Taxes (Spouse)</act:name>
|
||||
<act:id type="guid">5ee1e7d13ba219536e6ecd3ea899fb2d</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Taxes (Spouse)</act:description>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Federal</act:name>
|
||||
<act:id type="guid">48a409acca0ef366e1630bb51884add9</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Federal</act:description>
|
||||
<act:parent type="guid">5ee1e7d13ba219536e6ecd3ea899fb2d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Medicare</act:name>
|
||||
<act:id type="guid">c3b6e1c886e4f5b6c0bd80984d61d0a5</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Medicare</act:description>
|
||||
<act:parent type="guid">5ee1e7d13ba219536e6ecd3ea899fb2d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Other Tax</act:name>
|
||||
<act:id type="guid">e476cd2ff2b912799032d440ba5d10ed</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Other Tax</act:description>
|
||||
<act:parent type="guid">5ee1e7d13ba219536e6ecd3ea899fb2d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Social Security</act:name>
|
||||
<act:id type="guid">b285b68902fc18445d4898680e918201</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Social Security</act:description>
|
||||
<act:parent type="guid">5ee1e7d13ba219536e6ecd3ea899fb2d</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>State/Province</act:name>
|
||||
<act:id type="guid">e1c80b1cd5d013697b0c31290de68037</act:id>
|
||||
<act:type>EXPENSE</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>State/Province</act:description>
|
||||
<act:parent type="guid">5ee1e7d13ba219536e6ecd3ea899fb2d</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -1,84 +1,68 @@
|
||||
<?xml version="1.0"?>
|
||||
<gnc>
|
||||
<version>1</version>
|
||||
<ledger-data>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Spouse Retirement</name>
|
||||
<guid>dc3935401534fddc3faaaa5e45e5327e</guid>
|
||||
<type>BANK</type>
|
||||
<description>Spouse Retirement</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<slots>
|
||||
<s>
|
||||
<k>notes</k>
|
||||
<string>IRA, 401(k), or other retirement</string>
|
||||
</s>
|
||||
</slots>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Bond</name>
|
||||
<guid>b14714232d594305ba778f4ff06d6f14</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Bond</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>dc3935401534fddc3faaaa5e45e5327e</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Stock</name>
|
||||
<guid>0d50f44e1b46db9690528a7f8b35de37</guid>
|
||||
<type>STOCK</type>
|
||||
<description>Stock</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>dc3935401534fddc3faaaa5e45e5327e</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Market Index</name>
|
||||
<guid>5fc96bedc14211f822a39c91dabe9aa5</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Market Index</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>dc3935401534fddc3faaaa5e45e5327e</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
<account>
|
||||
<restore>
|
||||
<name>Mutual Fund</name>
|
||||
<guid>ee6f523d36ff66e2f29a62b658fa7a7a</guid>
|
||||
<type>MUTUAL</type>
|
||||
<description>Mutual Fund</description>
|
||||
<currency>
|
||||
<space>ISO4217</space>
|
||||
<id>USD</id>
|
||||
</currency>
|
||||
<parent>
|
||||
<guid>dc3935401534fddc3faaaa5e45e5327e</guid>
|
||||
</parent>
|
||||
</restore>
|
||||
</account>
|
||||
</ledger-data>
|
||||
</gnc>
|
||||
<gnc-v2>
|
||||
<gnc:count-data cd:type="account">5</gnc:count-data>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Spouse Retirement</act:name>
|
||||
<act:id type="guid">dc3935401534fddc3faaaa5e45e5327e</act:id>
|
||||
<act:type>BANK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Spouse Retirement</act:description>
|
||||
<act:slots>
|
||||
<slot>
|
||||
<slot:key>notes</slot:key>
|
||||
<slot:value type="string">IRA, 401(k), or other retirement</slot:value>
|
||||
</slot>
|
||||
</act:slots>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Bond</act:name>
|
||||
<act:id type="guid">b14714232d594305ba778f4ff06d6f14</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Bond</act:description>
|
||||
<act:parent type="guid">dc3935401534fddc3faaaa5e45e5327e</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Stock</act:name>
|
||||
<act:id type="guid">0d50f44e1b46db9690528a7f8b35de37</act:id>
|
||||
<act:type>STOCK</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Stock</act:description>
|
||||
<act:parent type="guid">dc3935401534fddc3faaaa5e45e5327e</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Market Index</act:name>
|
||||
<act:id type="guid">5fc96bedc14211f822a39c91dabe9aa5</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Market Index</act:description>
|
||||
<act:parent type="guid">dc3935401534fddc3faaaa5e45e5327e</act:parent>
|
||||
</gnc:account>
|
||||
<gnc:account version="2.0.0">
|
||||
<act:name>Mutual Fund</act:name>
|
||||
<act:id type="guid">ee6f523d36ff66e2f29a62b658fa7a7a</act:id>
|
||||
<act:type>MUTUAL</act:type>
|
||||
<act:currency>
|
||||
<cmdty:space>ISO4217</cmdty:space>
|
||||
<cmdty:id>USD</cmdty:id>
|
||||
</act:currency>
|
||||
<act:description>Mutual Fund</act:description>
|
||||
<act:parent type="guid">dc3935401534fddc3faaaa5e45e5327e</act:parent>
|
||||
</gnc:account>
|
||||
</gnc-v2>
|
||||
|
||||
<!-- Local variables: -->
|
||||
<!-- mode: xml -->
|
||||
<!-- End: -->
|
||||
|
@ -553,6 +553,7 @@ AC_OUTPUT(
|
||||
lib/Makefile
|
||||
macros/Makefile
|
||||
po/Makefile.in
|
||||
po/Makefile
|
||||
rpm/Makefile
|
||||
src/Makefile
|
||||
src/calculation/Makefile
|
||||
|
@ -41,9 +41,10 @@ libgncengine_la_SOURCES = \
|
||||
gnc-transaction-xml-v2.c \
|
||||
guid.c \
|
||||
io-gncbin-r.c \
|
||||
io-gncxml-gen.c \
|
||||
io-gncxml-r.c \
|
||||
io-gncxml-w.c \
|
||||
io-gncxml-v2.c \
|
||||
io-gncxml-w.c \
|
||||
kvp_frame.c \
|
||||
md5.c \
|
||||
sixtp-dom-generators.c \
|
||||
@ -75,8 +76,8 @@ noinst_HEADERS = \
|
||||
TransactionP.h \
|
||||
date.h \
|
||||
gnc-associate-account.h \
|
||||
gnc-book.h \
|
||||
gnc-book-p.h \
|
||||
gnc-book.h \
|
||||
gnc-commodity.h \
|
||||
gnc-common.h \
|
||||
gnc-engine-util.h \
|
||||
@ -84,15 +85,16 @@ noinst_HEADERS = \
|
||||
gnc-event-p.h \
|
||||
gnc-event.h \
|
||||
gnc-numeric.h \
|
||||
gnc-pricedb.h \
|
||||
gnc-pricedb-p.h \
|
||||
gnc-pricedb.h \
|
||||
gnc-xml-helper.h \
|
||||
gnc-xml.h \
|
||||
guid.h \
|
||||
io-gncbin.h \
|
||||
io-gncxml.h \
|
||||
io-gncxml-gen.h \
|
||||
io-gncxml-p.h \
|
||||
io-gncxml-v2.h \
|
||||
io-gncxml.h \
|
||||
kvp_frame.h \
|
||||
md5.h \
|
||||
sixtp-dom-generators.h \
|
||||
|
@ -13,7 +13,7 @@
|
||||
#include "sixtp-dom-generators.h"
|
||||
|
||||
#include "gnc-xml.h"
|
||||
#include "io-gncxml-v2.h"
|
||||
#include "io-gncxml-gen.h"
|
||||
|
||||
#include "sixtp-dom-parsers.h"
|
||||
#include "AccountP.h"
|
||||
@ -223,7 +223,7 @@ gnc_account_end_handler(gpointer data_for_children,
|
||||
Account *acc;
|
||||
xmlNodePtr achild;
|
||||
xmlNodePtr tree = (xmlNodePtr)data_for_children;
|
||||
sixtp_gdv2 *gdata = (sixtp_gdv2*)global_data;
|
||||
gxpf_data *gdata = (gxpf_data*)global_data;
|
||||
|
||||
successful = TRUE;
|
||||
|
||||
@ -254,7 +254,7 @@ gnc_account_end_handler(gpointer data_for_children,
|
||||
}
|
||||
else
|
||||
{
|
||||
gdata->addAccountFunc(global_data, acc);
|
||||
gdata->cb(tag, gdata->data, acc);
|
||||
}
|
||||
|
||||
xmlFreeNode(tree);
|
||||
|
@ -14,7 +14,7 @@
|
||||
|
||||
#include "gnc-xml.h"
|
||||
#include "gnc-engine-util.h"
|
||||
#include "io-gncxml-v2.h"
|
||||
#include "io-gncxml-gen.h"
|
||||
|
||||
#include "sixtp-dom-parsers.h"
|
||||
#include "AccountP.h"
|
||||
@ -135,7 +135,7 @@ gnc_commodity_end_handler(gpointer data_for_children,
|
||||
gnc_commodity *com;
|
||||
xmlNodePtr achild;
|
||||
xmlNodePtr tree = (xmlNodePtr)data_for_children;
|
||||
sixtp_gdv2 *globaldata = (sixtp_gdv2*)global_data;
|
||||
gxpf_data *gdata = (gxpf_data*)global_data;
|
||||
|
||||
if(parent_data)
|
||||
{
|
||||
@ -168,7 +168,7 @@ gnc_commodity_end_handler(gpointer data_for_children,
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
globaldata->addCommodityFunc(globaldata, com);
|
||||
gdata->cb(tag, gdata->data, com);
|
||||
|
||||
xmlFreeNode(tree);
|
||||
|
||||
|
@ -35,7 +35,7 @@
|
||||
#include "sixtp-dom-generators.h"
|
||||
#include "sixtp-writers.h"
|
||||
#include "sixtp-xml-write-utils.h"
|
||||
#include "io-gncxml-v2.h"
|
||||
#include "io-gncxml-gen.h"
|
||||
|
||||
#include "gnc-pricedb.h"
|
||||
|
||||
@ -275,7 +275,7 @@ pricedb_v2_end_handler(
|
||||
gpointer *result, const gchar *tag)
|
||||
{
|
||||
GNCPriceDB *db = *result;
|
||||
sixtp_gdv2* globaldata = (sixtp_gdv2*)global_data;
|
||||
gxpf_data *gdata = (gxpf_data*)global_data;
|
||||
|
||||
if(parent_data)
|
||||
{
|
||||
@ -287,7 +287,7 @@ pricedb_v2_end_handler(
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
globaldata->addPriceDBFunc(globaldata, db);
|
||||
gdata->cb(tag, gdata->data, db);
|
||||
*result = NULL;
|
||||
|
||||
return TRUE;
|
||||
|
@ -38,7 +38,7 @@
|
||||
|
||||
#include "gnc-xml.h"
|
||||
|
||||
#include "io-gncxml-v2.h"
|
||||
#include "io-gncxml-gen.h"
|
||||
|
||||
#include "sixtp-dom-parsers.h"
|
||||
#include "Transaction.h"
|
||||
@ -452,7 +452,7 @@ gnc_transaction_end_handler(gpointer data_for_children,
|
||||
gboolean successful = FALSE;
|
||||
xmlNodePtr achild;
|
||||
xmlNodePtr tree = (xmlNodePtr)data_for_children;
|
||||
sixtp_gdv2 *globaldata = (sixtp_gdv2*)global_data;
|
||||
gxpf_data *gdata = (gxpf_data*)global_data;
|
||||
|
||||
if(parent_data)
|
||||
{
|
||||
@ -478,7 +478,7 @@ gnc_transaction_end_handler(gpointer data_for_children,
|
||||
|
||||
if(successful)
|
||||
{
|
||||
globaldata->addTransactionFunc(globaldata, trn);
|
||||
gdata->cb(tag, gdata->data, trn);
|
||||
successful = TRUE;
|
||||
}
|
||||
else
|
||||
|
16
src/engine/io-gncxml-gen.c
Normal file
16
src/engine/io-gncxml-gen.c
Normal file
@ -0,0 +1,16 @@
|
||||
#include "io-gncxml-gen.h"
|
||||
|
||||
gboolean
|
||||
gnc_xml_parse_file(sixtp *top_parser, const char *filename,
|
||||
gxpf_callback callback, gpointer data)
|
||||
{
|
||||
gpointer parse_result = NULL;
|
||||
gxpf_data gpdata;
|
||||
|
||||
gpdata.cb = callback;
|
||||
gpdata.data = data;
|
||||
|
||||
return sixtp_parse_file(top_parser, filename,
|
||||
NULL, &gpdata, &parse_result);
|
||||
}
|
||||
|
22
src/engine/io-gncxml-gen.h
Normal file
22
src/engine/io-gncxml-gen.h
Normal file
@ -0,0 +1,22 @@
|
||||
#ifndef __IO_GNCXML_GEN_H__
|
||||
#define __IO_GNCXML_GEN_H__
|
||||
|
||||
#include <glib.h>
|
||||
#include "sixtp.h"
|
||||
|
||||
typedef gboolean (*gxpf_callback)(const char *tag, gpointer globaldata,
|
||||
gpointer data);
|
||||
|
||||
struct gxpf_data_struct
|
||||
{
|
||||
gxpf_callback cb;
|
||||
gpointer data;
|
||||
};
|
||||
|
||||
typedef struct gxpf_data_struct gxpf_data;
|
||||
|
||||
gboolean
|
||||
gnc_xml_parse_file(sixtp *top_parser, const char *filename,
|
||||
gxpf_callback callback, gpointer data);
|
||||
|
||||
#endif /* __IO_GNCXML_GEN_H__ */
|
@ -8,6 +8,8 @@
|
||||
|
||||
#include "sixtp-dom-parsers.h"
|
||||
#include "io-gncxml-v2.h"
|
||||
#include "io-gncxml-gen.h"
|
||||
|
||||
#include "sixtp.h"
|
||||
#include "sixtp-parsers.h"
|
||||
#include "gnc-xml.h"
|
||||
@ -126,7 +128,8 @@ gnc_counter_end_handler(gpointer data_for_children,
|
||||
gint64 val;
|
||||
char *type;
|
||||
xmlNodePtr tree = (xmlNodePtr)data_for_children;
|
||||
sixtp_gdv2 *gdata = (sixtp_gdv2*)global_data;
|
||||
gxpf_data *gdata = (gxpf_data*)global_data;
|
||||
sixtp_gdv2 *sixdata = (sixtp_gdv2*)gdata->data;
|
||||
|
||||
if(parent_data)
|
||||
{
|
||||
@ -152,15 +155,15 @@ gnc_counter_end_handler(gpointer data_for_children,
|
||||
|
||||
if(safe_strcmp(type, "transaction") == 0)
|
||||
{
|
||||
gdata->counter.transactions_total = val;
|
||||
sixdata->counter.transactions_total = val;
|
||||
}
|
||||
else if(safe_strcmp(type, "account") == 0)
|
||||
{
|
||||
gdata->counter.accounts_total = val;
|
||||
sixdata->counter.accounts_total = val;
|
||||
}
|
||||
else if(safe_strcmp(type, "commodity") == 0)
|
||||
{
|
||||
gdata->counter.commodities_total = val;
|
||||
sixdata->counter.commodities_total = val;
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -188,25 +191,56 @@ print_counter_data(load_counter data)
|
||||
data.commodities_total, data.commodities_loaded);
|
||||
}
|
||||
|
||||
static const char *ACCOUNT_TAG = "gnc:account";
|
||||
static const char *PRICEDB_TAG = "gnc:pricedb";
|
||||
static const char *COMMODITY_TAG = "gnc:commodity";
|
||||
static const char *COUNT_DATA_TAG = "gnc:count-data";
|
||||
static const char *TRANSACTION_TAG = "gnc:transaction";
|
||||
|
||||
static gboolean
|
||||
generic_callback(const char *tag, gpointer globaldata, gpointer data)
|
||||
{
|
||||
sixtp_gdv2 *gd = (sixtp_gdv2*)globaldata;
|
||||
|
||||
if(safe_strcmp(tag, ACCOUNT_TAG) == 0)
|
||||
{
|
||||
add_account_local(gd, (Account*)data);
|
||||
}
|
||||
else if(safe_strcmp(tag, PRICEDB_TAG) == 0)
|
||||
{
|
||||
add_pricedb_local(gd, (GNCPriceDB*)data);
|
||||
}
|
||||
else if(safe_strcmp(tag, COMMODITY_TAG) == 0)
|
||||
{
|
||||
add_commodity_local(gd, (gnc_commodity*)data);
|
||||
}
|
||||
else if(safe_strcmp(tag, TRANSACTION_TAG) == 0)
|
||||
{
|
||||
add_transaction_local(gd, (Transaction*)data);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
gboolean
|
||||
gnc_book_load_from_xml_file_v2(
|
||||
GNCBook *book,
|
||||
void (*countcallback)(const char *type, load_counter count))
|
||||
{
|
||||
sixtp_gdv2 gd;
|
||||
sixtp_gdv2 *gd;
|
||||
sixtp *top_parser;
|
||||
sixtp *main_parser;
|
||||
gpointer parse_result = NULL;
|
||||
|
||||
gd.book = book;
|
||||
gd.counter.accounts_loaded = 0;
|
||||
gd.counter.accounts_total = 0;
|
||||
gd.counter.commodities_loaded = 0;
|
||||
gd.counter.commodities_total = 0;
|
||||
gd.counter.transactions_loaded = 0;
|
||||
gd.counter.transactions_total = 0;
|
||||
gd.counter.prices_loaded = 0;
|
||||
gd.counter.prices_total = 0;
|
||||
gd = g_new0(sixtp_gdv2, 1);
|
||||
|
||||
gd->book = book;
|
||||
gd->counter.accounts_loaded = 0;
|
||||
gd->counter.accounts_total = 0;
|
||||
gd->counter.commodities_loaded = 0;
|
||||
gd->counter.commodities_total = 0;
|
||||
gd->counter.transactions_loaded = 0;
|
||||
gd->counter.transactions_total = 0;
|
||||
gd->counter.prices_loaded = 0;
|
||||
gd->counter.prices_total = 0;
|
||||
|
||||
{
|
||||
AccountGroup *g = gnc_book_get_group(book);
|
||||
@ -214,42 +248,36 @@ gnc_book_load_from_xml_file_v2(
|
||||
gnc_book_set_group(book, xaccMallocAccountGroup());
|
||||
}
|
||||
|
||||
gd.addAccountFunc = add_account_local;
|
||||
gd.addCommodityFunc = add_commodity_local;
|
||||
gd.addTransactionFunc = add_transaction_local;
|
||||
gd.addPriceDBFunc = add_pricedb_local;
|
||||
gd.countCallback = countcallback;
|
||||
gd->countCallback = countcallback;
|
||||
|
||||
top_parser = sixtp_new();
|
||||
main_parser = sixtp_new();
|
||||
|
||||
/* stop logging while we load */
|
||||
xaccLogDisable ();
|
||||
|
||||
if(!sixtp_add_some_sub_parsers(
|
||||
top_parser, TRUE,
|
||||
"gnc-v2", main_parser,
|
||||
NULL, NULL))
|
||||
{
|
||||
xaccLogEnable ();
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if(!sixtp_add_some_sub_parsers(
|
||||
main_parser, TRUE,
|
||||
"gnc:count-data", gnc_counter_sixtp_parser_create(),
|
||||
"gnc:pricedb", gnc_pricedb_sixtp_parser_create(),
|
||||
"gnc:commodity", gnc_commodity_sixtp_parser_create(),
|
||||
"gnc:account", gnc_account_sixtp_parser_create(),
|
||||
"gnc:transaction", gnc_transaction_sixtp_parser_create(),
|
||||
COUNT_DATA_TAG, gnc_counter_sixtp_parser_create(),
|
||||
PRICEDB_TAG, gnc_pricedb_sixtp_parser_create(),
|
||||
COMMODITY_TAG, gnc_commodity_sixtp_parser_create(),
|
||||
ACCOUNT_TAG, gnc_account_sixtp_parser_create(),
|
||||
TRANSACTION_TAG, gnc_transaction_sixtp_parser_create(),
|
||||
NULL, NULL))
|
||||
{
|
||||
xaccLogEnable ();
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if(!sixtp_parse_file(top_parser, gnc_book_get_file_path(book),
|
||||
NULL, &gd, &parse_result))
|
||||
/* stop logging while we load */
|
||||
xaccLogDisable ();
|
||||
|
||||
if(!gnc_xml_parse_file(top_parser, gnc_book_get_file_path(book),
|
||||
generic_callback, gd))
|
||||
{
|
||||
sixtp_destroy(top_parser);
|
||||
xaccLogEnable ();
|
||||
@ -311,7 +339,7 @@ write_counts(FILE* out, ...)
|
||||
{
|
||||
val = g_strdup_printf("%d", amount);
|
||||
|
||||
node = xmlNewNode(NULL, "gnc:count-data");
|
||||
node = xmlNewNode(NULL, COUNT_DATA_TAG);
|
||||
xmlSetProp(node, "cd:type", type);
|
||||
xmlNodeAddContent(node, val);
|
||||
|
||||
|
@ -37,22 +37,8 @@ typedef struct _load_counter_struct load_counter;
|
||||
struct sixtp_global_data_v2_struct
|
||||
{
|
||||
GNCBook *book;
|
||||
gpointer data;
|
||||
|
||||
int value;
|
||||
char *tag;
|
||||
|
||||
load_counter counter;
|
||||
void (*countCallback)(const char *type, load_counter counter);
|
||||
|
||||
gboolean (*addAccountFunc)(struct sixtp_global_data_v2_struct *data,
|
||||
Account *act);
|
||||
gboolean (*addCommodityFunc)(struct sixtp_global_data_v2_struct *data,
|
||||
gnc_commodity *com);
|
||||
gboolean (*addTransactionFunc)(struct sixtp_global_data_v2_struct *data,
|
||||
Transaction *act);
|
||||
gboolean (*addPriceDBFunc)(struct sixtp_global_data_v2_struct *data,
|
||||
GNCPriceDB *prc);
|
||||
};
|
||||
|
||||
typedef struct sixtp_global_data_v2_struct sixtp_gdv2;
|
||||
|
@ -455,7 +455,7 @@ dom_tree_to_gnc_numeric(xmlNodePtr node)
|
||||
|
||||
if(string_to_gnc_numeric(content, ret) != NULL)
|
||||
{
|
||||
free(content);
|
||||
g_free(content);
|
||||
return ret;
|
||||
}
|
||||
else
|
||||
@ -518,10 +518,10 @@ dom_tree_to_timespec(xmlNodePtr node)
|
||||
}
|
||||
|
||||
if(!string_to_timespec_secs(content, ret)) {
|
||||
free(content);
|
||||
return timespec_failure(ret);
|
||||
g_free(content);
|
||||
return timespec_failure(ret);
|
||||
}
|
||||
free(content);
|
||||
g_free(content);
|
||||
seen_s = TRUE;
|
||||
}
|
||||
}
|
||||
@ -539,10 +539,10 @@ dom_tree_to_timespec(xmlNodePtr node)
|
||||
}
|
||||
|
||||
if(!string_to_timespec_nsecs(content, ret)) {
|
||||
free(content);
|
||||
return timespec_failure(ret);
|
||||
g_free(content);
|
||||
return timespec_failure(ret);
|
||||
}
|
||||
free(content);
|
||||
g_free(content);
|
||||
seen_ns = TRUE;
|
||||
}
|
||||
}
|
||||
|
@ -99,14 +99,6 @@ on_accountChooseDruidPage_cancel (GnomeDruid *gnomedruid,
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
on_newAccountRunAgain_toggled (GtkToggleButton *togglebutton,
|
||||
gpointer user_data)
|
||||
{
|
||||
/* I'm not sure this is needed. FIXME: remove */
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
on_newAccountCancelDialog_OKButton_clicked
|
||||
(GtkButton *button,
|
||||
@ -176,3 +168,25 @@ on_newUserDruidFinishPage_prepare (GnomeDruidPage *gnomedruidpage,
|
||||
/* need to fill up the account list info here */
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
on_newAccountTypesList_select_row (GtkCList *clist,
|
||||
gint row,
|
||||
gint column,
|
||||
GdkEvent *event,
|
||||
gpointer user_data)
|
||||
{
|
||||
/* need to fill in useful data on a select row */
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
on_newAccountTree_select_row (GtkCList *clist,
|
||||
gint row,
|
||||
gint column,
|
||||
GdkEvent *event,
|
||||
gpointer user_data)
|
||||
{
|
||||
/* need to put info in the box and account name here */
|
||||
}
|
||||
|
||||
|
@ -45,10 +45,6 @@ void
|
||||
on_accountChooseDruidPage_cancel (GnomeDruid *gnomedruid,
|
||||
gpointer user_data);
|
||||
|
||||
void
|
||||
on_newAccountRunAgain_toggled (GtkToggleButton *togglebutton,
|
||||
gpointer user_data);
|
||||
|
||||
void
|
||||
on_newAccountCancelDialog_OKButton_clicked
|
||||
(GtkButton *button,
|
||||
@ -65,10 +61,24 @@ on_chooseAccountTypesPage_prepare (GnomeDruidPage *gnomedruidpage,
|
||||
gpointer arg1,
|
||||
gpointer user_data);
|
||||
|
||||
|
||||
#endif /* _NEW_USER_CALLBACKS_H_ */
|
||||
|
||||
void
|
||||
on_newUserDruidFinishPage_prepare (GnomeDruidPage *gnomedruidpage,
|
||||
gpointer arg1,
|
||||
gpointer user_data);
|
||||
|
||||
void
|
||||
on_newAccountTypesList_select_row (GtkCList *clist,
|
||||
gint row,
|
||||
gint column,
|
||||
GdkEvent *event,
|
||||
gpointer user_data);
|
||||
|
||||
void
|
||||
on_newAccountTree_select_row (GtkCList *clist,
|
||||
gint row,
|
||||
gint column,
|
||||
GdkEvent *event,
|
||||
gpointer user_data);
|
||||
|
||||
|
||||
#endif /* _NEW_USER_CALLBACKS_H_ */
|
||||
|
@ -62,6 +62,7 @@ create_newUserDialog (void)
|
||||
gtk_object_set_data (GTK_OBJECT (newUserDialog), "newUserDialog", newUserDialog);
|
||||
gtk_widget_set_usize (newUserDialog, 540, 370);
|
||||
gtk_window_set_title (GTK_WINDOW (newUserDialog), _("New User Account setup"));
|
||||
gtk_window_set_default_size (GTK_WINDOW (newUserDialog), 640, 480);
|
||||
|
||||
accountChooseDruidPage = gnome_druid_new ();
|
||||
gtk_widget_set_name (accountChooseDruidPage, "accountChooseDruidPage");
|
||||
@ -260,7 +261,7 @@ create_newUserDialog (void)
|
||||
gnome_druid_page_finish_set_logo_bg_color (GNOME_DRUID_PAGE_FINISH (newUserDruidFinishPage), &newUserDruidFinishPage_logo_bg_color);
|
||||
gnome_druid_page_finish_set_title_color (GNOME_DRUID_PAGE_FINISH (newUserDruidFinishPage), &newUserDruidFinishPage_title_color);
|
||||
gnome_druid_page_finish_set_title (GNOME_DRUID_PAGE_FINISH (newUserDruidFinishPage), _("Finish Account Setup"));
|
||||
gnome_druid_page_finish_set_text (GNOME_DRUID_PAGE_FINISH (newUserDruidFinishPage), _("Please check the window for the new accounts that will be created.\nPress `Finish' if this is OK."));
|
||||
gnome_druid_page_finish_set_text (GNOME_DRUID_PAGE_FINISH (newUserDruidFinishPage), _("Please check the window for the new accounts that will be created. \nAdd any starting balances you would like to exist.\nThis will come from a Starting Equity account.\nPress `Finish' if this is OK."));
|
||||
|
||||
gtk_signal_connect (GTK_OBJECT (accountChooseDruidPage), "cancel",
|
||||
GTK_SIGNAL_FUNC (on_accountChooseDruidPage_cancel),
|
||||
@ -277,6 +278,9 @@ create_newUserDialog (void)
|
||||
gtk_signal_connect (GTK_OBJECT (chooseAccountTypesPage), "prepare",
|
||||
GTK_SIGNAL_FUNC (on_chooseAccountTypesPage_prepare),
|
||||
NULL);
|
||||
gtk_signal_connect (GTK_OBJECT (newAccountTypesList), "select_row",
|
||||
GTK_SIGNAL_FUNC (on_newAccountTypesList_select_row),
|
||||
NULL);
|
||||
gtk_signal_connect (GTK_OBJECT (newUserDruidFinishPage), "finish",
|
||||
GTK_SIGNAL_FUNC (on_newUserDruidFinishPage_finish),
|
||||
NULL);
|
||||
@ -291,81 +295,139 @@ GtkWidget*
|
||||
create_newAccountList (void)
|
||||
{
|
||||
GtkWidget *newAccountList;
|
||||
GtkWidget *vbox3;
|
||||
GtkWidget *newAccountTopVBox;
|
||||
GtkWidget *newAccountLable;
|
||||
GtkWidget *scrolledwindow4;
|
||||
GtkWidget *newAccountListCTree;
|
||||
GtkWidget *newAccountList_NameLable;
|
||||
GtkWidget *newAccountList_DescriptionLable;
|
||||
GtkWidget *newAccountList_BalanceLable;
|
||||
GtkWidget *newAccountHPaned;
|
||||
GtkWidget *newAccountTreeScrolledWindow;
|
||||
GtkWidget *newAccountTree;
|
||||
GtkWidget *newAccountTreeAccountLabel;
|
||||
GtkWidget *newAccountTreeDestriptionLabel;
|
||||
GtkWidget *newAccountTreeStartingBalanceLabel;
|
||||
GtkWidget *vbox4;
|
||||
GtkWidget *newAccountAccountNameLabel;
|
||||
GtkWidget *newAccountEnterStartingBalanceLabel;
|
||||
GtkWidget *newAccountStartingBalanceEntry;
|
||||
|
||||
newAccountList = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
||||
gtk_widget_set_name (newAccountList, "newAccountList");
|
||||
gtk_object_set_data (GTK_OBJECT (newAccountList), "newAccountList", newAccountList);
|
||||
gtk_widget_set_usize (newAccountList, 200, 400);
|
||||
gtk_window_set_title (GTK_WINDOW (newAccountList), _("New Account List"));
|
||||
gtk_window_set_default_size (GTK_WINDOW (newAccountList), 640, 480);
|
||||
|
||||
vbox3 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_set_name (vbox3, "vbox3");
|
||||
gtk_widget_ref (vbox3);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "vbox3", vbox3,
|
||||
newAccountTopVBox = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_set_name (newAccountTopVBox, "newAccountTopVBox");
|
||||
gtk_widget_ref (newAccountTopVBox);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountTopVBox", newAccountTopVBox,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox3);
|
||||
gtk_container_add (GTK_CONTAINER (newAccountList), vbox3);
|
||||
gtk_widget_show (newAccountTopVBox);
|
||||
gtk_container_add (GTK_CONTAINER (newAccountList), newAccountTopVBox);
|
||||
|
||||
newAccountLable = gtk_label_new (_("If you would like the new accounts to have a balance please enter it into the Balance column in the list below."));
|
||||
newAccountLable = gtk_label_new (_("If you would like the accounts to have a starting balance click on the account line and enter the starting balance in the text entry box on the right."));
|
||||
gtk_widget_set_name (newAccountLable, "newAccountLable");
|
||||
gtk_widget_ref (newAccountLable);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountLable", newAccountLable,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountLable);
|
||||
gtk_box_pack_start (GTK_BOX (vbox3), newAccountLable, FALSE, FALSE, 0);
|
||||
gtk_label_set_justify (GTK_LABEL (newAccountLable), GTK_JUSTIFY_RIGHT);
|
||||
gtk_box_pack_start (GTK_BOX (newAccountTopVBox), newAccountLable, FALSE, TRUE, 0);
|
||||
gtk_label_set_justify (GTK_LABEL (newAccountLable), GTK_JUSTIFY_FILL);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (newAccountLable), TRUE);
|
||||
gtk_misc_set_alignment (GTK_MISC (newAccountLable), 0.0800003, 0.08);
|
||||
gtk_misc_set_padding (GTK_MISC (newAccountLable), 1, 1);
|
||||
|
||||
scrolledwindow4 = gtk_scrolled_window_new (NULL, NULL);
|
||||
gtk_widget_set_name (scrolledwindow4, "scrolledwindow4");
|
||||
gtk_widget_ref (scrolledwindow4);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "scrolledwindow4", scrolledwindow4,
|
||||
newAccountHPaned = gtk_hpaned_new ();
|
||||
gtk_widget_set_name (newAccountHPaned, "newAccountHPaned");
|
||||
gtk_widget_ref (newAccountHPaned);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountHPaned", newAccountHPaned,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (scrolledwindow4);
|
||||
gtk_box_pack_start (GTK_BOX (vbox3), scrolledwindow4, TRUE, TRUE, 0);
|
||||
gtk_widget_show (newAccountHPaned);
|
||||
gtk_box_pack_start (GTK_BOX (newAccountTopVBox), newAccountHPaned, TRUE, TRUE, 0);
|
||||
gtk_paned_set_position (GTK_PANED (newAccountHPaned), 1);
|
||||
|
||||
newAccountListCTree = gtk_ctree_new (3, 0);
|
||||
gtk_widget_set_name (newAccountListCTree, "newAccountListCTree");
|
||||
gtk_widget_ref (newAccountListCTree);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountListCTree", newAccountListCTree,
|
||||
newAccountTreeScrolledWindow = gtk_scrolled_window_new (NULL, NULL);
|
||||
gtk_widget_set_name (newAccountTreeScrolledWindow, "newAccountTreeScrolledWindow");
|
||||
gtk_widget_ref (newAccountTreeScrolledWindow);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountTreeScrolledWindow", newAccountTreeScrolledWindow,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountListCTree);
|
||||
gtk_container_add (GTK_CONTAINER (scrolledwindow4), newAccountListCTree);
|
||||
gtk_clist_set_column_width (GTK_CLIST (newAccountListCTree), 0, 80);
|
||||
gtk_clist_set_column_width (GTK_CLIST (newAccountListCTree), 1, 157);
|
||||
gtk_clist_set_column_width (GTK_CLIST (newAccountListCTree), 2, 80);
|
||||
gtk_clist_column_titles_show (GTK_CLIST (newAccountListCTree));
|
||||
gtk_widget_show (newAccountTreeScrolledWindow);
|
||||
gtk_paned_pack1 (GTK_PANED (newAccountHPaned), newAccountTreeScrolledWindow, FALSE, FALSE);
|
||||
|
||||
newAccountList_NameLable = gtk_label_new (_("Name"));
|
||||
gtk_widget_set_name (newAccountList_NameLable, "newAccountList_NameLable");
|
||||
gtk_widget_ref (newAccountList_NameLable);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountList_NameLable", newAccountList_NameLable,
|
||||
newAccountTree = gtk_ctree_new (3, 0);
|
||||
gtk_widget_set_name (newAccountTree, "newAccountTree");
|
||||
gtk_widget_ref (newAccountTree);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountTree", newAccountTree,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountList_NameLable);
|
||||
gtk_clist_set_column_widget (GTK_CLIST (newAccountListCTree), 0, newAccountList_NameLable);
|
||||
gtk_widget_show (newAccountTree);
|
||||
gtk_container_add (GTK_CONTAINER (newAccountTreeScrolledWindow), newAccountTree);
|
||||
gtk_clist_set_column_width (GTK_CLIST (newAccountTree), 0, 86);
|
||||
gtk_clist_set_column_width (GTK_CLIST (newAccountTree), 1, 233);
|
||||
gtk_clist_set_column_width (GTK_CLIST (newAccountTree), 2, 80);
|
||||
gtk_clist_column_titles_show (GTK_CLIST (newAccountTree));
|
||||
|
||||
newAccountList_DescriptionLable = gtk_label_new (_("Description"));
|
||||
gtk_widget_set_name (newAccountList_DescriptionLable, "newAccountList_DescriptionLable");
|
||||
gtk_widget_ref (newAccountList_DescriptionLable);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountList_DescriptionLable", newAccountList_DescriptionLable,
|
||||
newAccountTreeAccountLabel = gtk_label_new (_("Account Name"));
|
||||
gtk_widget_set_name (newAccountTreeAccountLabel, "newAccountTreeAccountLabel");
|
||||
gtk_widget_ref (newAccountTreeAccountLabel);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountTreeAccountLabel", newAccountTreeAccountLabel,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountList_DescriptionLable);
|
||||
gtk_clist_set_column_widget (GTK_CLIST (newAccountListCTree), 1, newAccountList_DescriptionLable);
|
||||
gtk_widget_show (newAccountTreeAccountLabel);
|
||||
gtk_clist_set_column_widget (GTK_CLIST (newAccountTree), 0, newAccountTreeAccountLabel);
|
||||
|
||||
newAccountList_BalanceLable = gtk_label_new (_("Balance"));
|
||||
gtk_widget_set_name (newAccountList_BalanceLable, "newAccountList_BalanceLable");
|
||||
gtk_widget_ref (newAccountList_BalanceLable);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountList_BalanceLable", newAccountList_BalanceLable,
|
||||
newAccountTreeDestriptionLabel = gtk_label_new (_("Description"));
|
||||
gtk_widget_set_name (newAccountTreeDestriptionLabel, "newAccountTreeDestriptionLabel");
|
||||
gtk_widget_ref (newAccountTreeDestriptionLabel);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountTreeDestriptionLabel", newAccountTreeDestriptionLabel,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountList_BalanceLable);
|
||||
gtk_clist_set_column_widget (GTK_CLIST (newAccountListCTree), 2, newAccountList_BalanceLable);
|
||||
gtk_widget_show (newAccountTreeDestriptionLabel);
|
||||
gtk_clist_set_column_widget (GTK_CLIST (newAccountTree), 1, newAccountTreeDestriptionLabel);
|
||||
|
||||
newAccountTreeStartingBalanceLabel = gtk_label_new (_("Starting Balance"));
|
||||
gtk_widget_set_name (newAccountTreeStartingBalanceLabel, "newAccountTreeStartingBalanceLabel");
|
||||
gtk_widget_ref (newAccountTreeStartingBalanceLabel);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountTreeStartingBalanceLabel", newAccountTreeStartingBalanceLabel,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountTreeStartingBalanceLabel);
|
||||
gtk_clist_set_column_widget (GTK_CLIST (newAccountTree), 2, newAccountTreeStartingBalanceLabel);
|
||||
|
||||
vbox4 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_set_name (vbox4, "vbox4");
|
||||
gtk_widget_ref (vbox4);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "vbox4", vbox4,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox4);
|
||||
gtk_paned_pack2 (GTK_PANED (newAccountHPaned), vbox4, TRUE, TRUE);
|
||||
|
||||
newAccountAccountNameLabel = gtk_label_new (_("Account: "));
|
||||
gtk_widget_set_name (newAccountAccountNameLabel, "newAccountAccountNameLabel");
|
||||
gtk_widget_ref (newAccountAccountNameLabel);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountAccountNameLabel", newAccountAccountNameLabel,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountAccountNameLabel);
|
||||
gtk_box_pack_start (GTK_BOX (vbox4), newAccountAccountNameLabel, FALSE, FALSE, 0);
|
||||
gtk_label_set_justify (GTK_LABEL (newAccountAccountNameLabel), GTK_JUSTIFY_RIGHT);
|
||||
gtk_label_set_line_wrap (GTK_LABEL (newAccountAccountNameLabel), TRUE);
|
||||
gtk_misc_set_alignment (GTK_MISC (newAccountAccountNameLabel), 0.49, 0.5);
|
||||
|
||||
newAccountEnterStartingBalanceLabel = gtk_label_new (_("Enter Starting Balance"));
|
||||
gtk_widget_set_name (newAccountEnterStartingBalanceLabel, "newAccountEnterStartingBalanceLabel");
|
||||
gtk_widget_ref (newAccountEnterStartingBalanceLabel);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountEnterStartingBalanceLabel", newAccountEnterStartingBalanceLabel,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountEnterStartingBalanceLabel);
|
||||
gtk_box_pack_start (GTK_BOX (vbox4), newAccountEnterStartingBalanceLabel, FALSE, FALSE, 0);
|
||||
gtk_label_set_justify (GTK_LABEL (newAccountEnterStartingBalanceLabel), GTK_JUSTIFY_RIGHT);
|
||||
|
||||
newAccountStartingBalanceEntry = gtk_entry_new ();
|
||||
gtk_widget_set_name (newAccountStartingBalanceEntry, "newAccountStartingBalanceEntry");
|
||||
gtk_widget_ref (newAccountStartingBalanceEntry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (newAccountList), "newAccountStartingBalanceEntry", newAccountStartingBalanceEntry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (newAccountStartingBalanceEntry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox4), newAccountStartingBalanceEntry, FALSE, FALSE, 0);
|
||||
gtk_widget_set_usize (newAccountStartingBalanceEntry, 100, -2);
|
||||
|
||||
gtk_signal_connect (GTK_OBJECT (newAccountTree), "select_row",
|
||||
GTK_SIGNAL_FUNC (on_newAccountTree_select_row),
|
||||
NULL);
|
||||
|
||||
return newAccountList;
|
||||
}
|
||||
@ -436,9 +498,6 @@ create_addAccountCancelDialog (void)
|
||||
gtk_widget_show (newAccountCancelDialog_OKButton);
|
||||
GTK_WIDGET_SET_FLAGS (newAccountCancelDialog_OKButton, GTK_CAN_DEFAULT);
|
||||
|
||||
gtk_signal_connect (GTK_OBJECT (newAccountCancelDialog_RunAgainToggle), "toggled",
|
||||
GTK_SIGNAL_FUNC (on_newAccountRunAgain_toggled),
|
||||
NULL);
|
||||
gtk_signal_connect (GTK_OBJECT (newAccountCancelDialog_OKButton), "clicked",
|
||||
GTK_SIGNAL_FUNC (on_newAccountCancelDialog_OKButton_clicked),
|
||||
NULL);
|
||||
|
@ -31,6 +31,8 @@
|
||||
<type>GTK_WINDOW_TOPLEVEL</type>
|
||||
<position>GTK_WIN_POS_NONE</position>
|
||||
<modal>False</modal>
|
||||
<default_width>640</default_width>
|
||||
<default_height>480</default_height>
|
||||
<allow_shrink>False</allow_shrink>
|
||||
<allow_grow>True</allow_grow>
|
||||
<auto_shrink>False</auto_shrink>
|
||||
@ -187,6 +189,11 @@
|
||||
<class>GtkCList</class>
|
||||
<name>newAccountTypesList</name>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>select_row</name>
|
||||
<handler>on_newAccountTypesList_select_row</handler>
|
||||
<last_modification_time>Tue, 03 Apr 2001 19:46:37 GMT</last_modification_time>
|
||||
</signal>
|
||||
<columns>3</columns>
|
||||
<column_widths>52,152,80</column_widths>
|
||||
<selection_mode>GTK_SELECTION_MULTIPLE</selection_mode>
|
||||
@ -313,7 +320,9 @@
|
||||
<last_modification_time>Sun, 14 Jan 2001 18:14:22 GMT</last_modification_time>
|
||||
</signal>
|
||||
<title>Finish Account Setup</title>
|
||||
<text>Please check the window for the new accounts that will be created.
|
||||
<text>Please check the window for the new accounts that will be created.
|
||||
Add any starting balances you would like to exist.
|
||||
This will come from a Starting Equity account.
|
||||
Press `Finish' if this is OK.</text>
|
||||
<background_color>25,25,112</background_color>
|
||||
<logo_background_color>255,255,255</logo_background_color>
|
||||
@ -333,40 +342,41 @@ Press `Finish' if this is OK.</text>
|
||||
<type>GTK_WINDOW_TOPLEVEL</type>
|
||||
<position>GTK_WIN_POS_NONE</position>
|
||||
<modal>False</modal>
|
||||
<default_width>640</default_width>
|
||||
<default_height>480</default_height>
|
||||
<allow_shrink>False</allow_shrink>
|
||||
<allow_grow>True</allow_grow>
|
||||
<auto_shrink>False</auto_shrink>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox3</name>
|
||||
<name>newAccountTopVBox</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>newAccountLable</name>
|
||||
<label>If you would like the new accounts to have a balance please enter it into the Balance column in the list below.</label>
|
||||
<justify>GTK_JUSTIFY_RIGHT</justify>
|
||||
<label>If you would like the accounts to have a starting balance click on the account line and enter the starting balance in the text entry box on the right.</label>
|
||||
<justify>GTK_JUSTIFY_FILL</justify>
|
||||
<wrap>True</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<xalign>0.0800003</xalign>
|
||||
<yalign>0.08</yalign>
|
||||
<xpad>1</xpad>
|
||||
<ypad>1</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkScrolledWindow</class>
|
||||
<name>scrolledwindow4</name>
|
||||
<hscrollbar_policy>GTK_POLICY_ALWAYS</hscrollbar_policy>
|
||||
<vscrollbar_policy>GTK_POLICY_ALWAYS</vscrollbar_policy>
|
||||
<hupdate_policy>GTK_UPDATE_CONTINUOUS</hupdate_policy>
|
||||
<vupdate_policy>GTK_UPDATE_CONTINUOUS</vupdate_policy>
|
||||
<class>GtkHPaned</class>
|
||||
<name>newAccountHPaned</name>
|
||||
<handle_size>10</handle_size>
|
||||
<gutter_size>6</gutter_size>
|
||||
<position>1</position>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>True</expand>
|
||||
@ -374,52 +384,131 @@ Press `Finish' if this is OK.</text>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkCTree</class>
|
||||
<name>newAccountListCTree</name>
|
||||
<can_focus>True</can_focus>
|
||||
<columns>3</columns>
|
||||
<column_widths>80,157,80</column_widths>
|
||||
<selection_mode>GTK_SELECTION_SINGLE</selection_mode>
|
||||
<show_titles>True</show_titles>
|
||||
<shadow_type>GTK_SHADOW_IN</shadow_type>
|
||||
<class>GtkScrolledWindow</class>
|
||||
<name>newAccountTreeScrolledWindow</name>
|
||||
<hscrollbar_policy>GTK_POLICY_ALWAYS</hscrollbar_policy>
|
||||
<vscrollbar_policy>GTK_POLICY_ALWAYS</vscrollbar_policy>
|
||||
<hupdate_policy>GTK_UPDATE_CONTINUOUS</hupdate_policy>
|
||||
<vupdate_policy>GTK_UPDATE_CONTINUOUS</vupdate_policy>
|
||||
<child>
|
||||
<shrink>False</shrink>
|
||||
<resize>False</resize>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkCTree</class>
|
||||
<name>newAccountTree</name>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>select_row</name>
|
||||
<handler>on_newAccountTree_select_row</handler>
|
||||
<last_modification_time>Tue, 03 Apr 2001 19:46:19 GMT</last_modification_time>
|
||||
</signal>
|
||||
<columns>3</columns>
|
||||
<column_widths>86,233,80</column_widths>
|
||||
<selection_mode>GTK_SELECTION_SINGLE</selection_mode>
|
||||
<show_titles>True</show_titles>
|
||||
<shadow_type>GTK_SHADOW_IN</shadow_type>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>CTree:title</child_name>
|
||||
<name>newAccountTreeAccountLabel</name>
|
||||
<label>Account Name</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>CTree:title</child_name>
|
||||
<name>newAccountTreeDestriptionLabel</name>
|
||||
<label>Description</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>CTree:title</child_name>
|
||||
<name>newAccountTreeStartingBalanceLabel</name>
|
||||
<label>Starting Balance</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox4</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<shrink>True</shrink>
|
||||
<resize>True</resize>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>CTree:title</child_name>
|
||||
<name>newAccountList_NameLable</name>
|
||||
<label>Name</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<name>newAccountAccountNameLabel</name>
|
||||
<label>Account: </label>
|
||||
<justify>GTK_JUSTIFY_RIGHT</justify>
|
||||
<wrap>True</wrap>
|
||||
<xalign>0.49</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>CTree:title</child_name>
|
||||
<name>newAccountList_DescriptionLable</name>
|
||||
<label>Description</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<name>newAccountEnterStartingBalanceLabel</name>
|
||||
<label>Enter Starting Balance</label>
|
||||
<justify>GTK_JUSTIFY_RIGHT</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>CTree:title</child_name>
|
||||
<name>newAccountList_BalanceLable</name>
|
||||
<label>Balance</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<class>GtkEntry</class>
|
||||
<name>newAccountStartingBalanceEntry</name>
|
||||
<width>100</width>
|
||||
<can_focus>True</can_focus>
|
||||
<editable>True</editable>
|
||||
<text_visible>True</text_visible>
|
||||
<text_max_length>0</text_max_length>
|
||||
<text></text>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
@ -514,11 +603,6 @@ Press `Finish' if this is OK.</text>
|
||||
<class>GtkCheckButton</class>
|
||||
<name>newAccountCancelDialog_RunAgainToggle</name>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>toggled</name>
|
||||
<handler>on_newAccountRunAgain_toggled</handler>
|
||||
<last_modification_time>Wed, 10 Jan 2001 03:44:02 GMT</last_modification_time>
|
||||
</signal>
|
||||
<label>Run New User Account Setup again?</label>
|
||||
<active>True</active>
|
||||
<draw_indicator>True</draw_indicator>
|
||||
|
Loading…
Reference in New Issue
Block a user