gnucash/libgnucash/doc/xml/io-gncxml-version2.dtd
Geert Janssens 83d14e1c1c Restructure the src directory
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.
2017-08-10 18:45:00 +02:00

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;