mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-28 03:34:05 -06:00
83d14e1c1c
It is split into - /libgnucash (for the non-gui bits) - /gnucash (for the gui) - /common (misc source files used by both) - /bindings (currently only holds python bindings) This is the first step in restructuring the code. It will need much more fine tuning later on.
28 lines
664 B
DTD
28 lines
664 B
DTD
<!ELEMENT gnc-v2 (gnc:count-data*,
|
|
gnc:defaults*, gnc:preferences*, gnc:commodity*,
|
|
gnc:pricedb?, gnc:account*, gnc:transaction*)>
|
|
|
|
<!ENTITY % defaults-v1 SYSTEM "defaults-v1.dtd">
|
|
<!ENTITY % prefs-v1 SYSTEM "preferences-v1.dtd">
|
|
<!ENTITY % prices-v1 SYSTEM "prices-v1.dtd">
|
|
<!ENTITY % commodity-v2 SYSTEM "commodity-v2.dtd">
|
|
<!ENTITY % account-v2 SYSTEM "account-v2.dtd">
|
|
<!ENTITY % transactions-v2 SYSTEM "transactions-v2.dtd">
|
|
|
|
<!ELEMENT gnc:count-data (cd:type, cd:amount)>
|
|
<!ELEMENT cd:type (#PCDATA)>
|
|
<!ELEMENT cd:amount (#PCDATA)>
|
|
|
|
%defaults-v1;
|
|
|
|
%prefs-v1;
|
|
|
|
%prices-v1;
|
|
|
|
%commodity-v2;
|
|
|
|
%account-v2;
|
|
|
|
%transactions-v2;
|
|
|