[Gnucash-changes] Updates for release of 1.8.4

Chris Lyttle wilddev at cvs.gnucash.org
Mon Apr 12 23:46:18 EDT 2004


Log Message:
-----------
Updates for release of 1.8.4

Modified Files:
--------------
    gnucash-docs:
        ChangeLog
        NEWS
        configure.in
    gnucash-docs/doc-tools:
        dbadd.c
    gnucash-docs/guide/C:
        appendixa.xml
        appendixb.xml
        appendixc.xml
        ch_accts.xml
        ch_basics.xml
        ch_bus_ap.xml
        ch_bus_ar.xml
        ch_bus_pay.xml
        ch_capgain.xml
        ch_cbook.xml
        ch_cc.xml
        ch_currency.xml
        ch_dep.xml
        ch_invest.xml
        ch_loans.xml
        ch_oview.xml
        ch_reports.xml
        ch_txns.xml
        gnucash-guide.xml
    gnucash-docs/help/C:
        gnucash-help.xml
    gnucash-docs/help/de_DE:
        gnucash-help.xml

Revision Data
-------------
Index: configure.in
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/configure.in,v
retrieving revision 1.16
retrieving revision 1.17
diff -Lconfigure.in -Lconfigure.in -u -r1.16 -r1.17
--- configure.in
+++ configure.in
@@ -60,7 +60,7 @@
 dnl ====================================
 
 AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(gnucash-docs,1.8.3)
+AM_INIT_AUTOMAKE(gnucash-docs,1.8.4)
 AM_PROG_LIBTOOL
 
 dnl
Index: ChangeLog
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -LChangeLog -LChangeLog -u -r1.61 -r1.62
--- ChangeLog
+++ ChangeLog
@@ -1,4 +1,15 @@
-2003-03-23  Derek Atkins  <derek at ihtfp.com>
+2004-04-10  Chris Lyttle  <chris at wilddev.net>
+	* NEWS: Release of version 1.8.4
+	* configure.in: Release of version 1.8.4
+	* doc-tools/dbadd.c: Added patch by Alex Rostovtsev
+	  <al_rost at hotmail.com> from gentoo bug #27978 to 
+	  fix issue with dbadd on 2.6 kernels.
+	* guide/C/*: Updated docs with release info, 
+	  removed older .txt files.
+	* help/C/gnucash-help.xml: Updated with release info
+	  and revision info.
+	
+2004-03-23  Derek Atkins  <derek at ihtfp.com>
 	* configure.in:  add db-4.1 and db-4.2
 
 2004-02-07 Jon Lapham <lapham at extracta.com.br>
Index: NEWS
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/NEWS,v
retrieving revision 1.10
retrieving revision 1.11
diff -LNEWS -LNEWS -u -r1.10 -r1.11
--- NEWS
+++ NEWS
@@ -1,6 +1,13 @@
 Version History
 ---------------
 
+ 1.8.4  - 11 Apr 2004
+	 o Many changes to the Guide by Jon (see changelog)
+	 o Added support for db-4.1 and db-4.2
+	 o Fixed issue with dbadd on 2.6 kernels patch by
+	   Alex Rostovtsev
+	 o Updated docs with release info and revision info.
+ 
  1.8.3  - 31 Aug 2003
  	 o Fix xmllint errors
 	 o Add new credit card chapter images
Index: dbadd.c
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/doc-tools/dbadd.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -Ldoc-tools/dbadd.c -Ldoc-tools/dbadd.c -u -r1.1 -r1.2
--- doc-tools/dbadd.c
+++ doc-tools/dbadd.c
@@ -76,6 +76,16 @@
   const char *db_name;
   int i;
 
+  HASHINFO info;
+
+  memset (&info, 0, sizeof (info));
+  info.bsize = 256;
+  info.ffactor = 8;
+  info.nelem = (argc-2)>>1>0 ? (argc-2)>>1 : 1;
+  info.cachesize = 0;
+  info.hash = 0;
+  info.lorder = 0;
+
   if (argc < 2)
     usage (argv[0]);
 
@@ -84,7 +94,7 @@
 
   db_name = argv[1];
 
-  database = dbopen (db_name, O_CREAT | O_RDWR, 0644, DB_HASH, NULL);
+  database = dbopen (db_name, O_CREAT | O_RDWR, 0644, DB_HASH, &info);
   if (!database)
   {
     fprintf (stderr, "Error opening database %s: %s\n",
Index: ch_cbook.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_cbook.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_cbook.xml -Lguide/C/ch_cbook.xml -u -r1.1 -r1.2
--- guide/C/ch_cbook.xml
+++ guide/C/ch_cbook.xml
@@ -1,9 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.6
-  Last modified: January 1, 2003
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally written by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: appendixc.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/appendixc.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -Lguide/C/appendixc.xml -Lguide/C/appendixc.xml -u -r1.3 -r1.4
--- guide/C/appendixc.xml
+++ guide/C/appendixc.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: appendixb.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/appendixb.xml,v
retrieving revision 1.11
retrieving revision 1.12
diff -Lguide/C/appendixb.xml -Lguide/C/appendixb.xml -u -r1.11 -r1.12
--- guide/C/appendixb.xml
+++ guide/C/appendixb.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: gnucash-guide.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/gnucash-guide.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -Lguide/C/gnucash-guide.xml -Lguide/C/gnucash-guide.xml -u -r1.9 -r1.10
--- guide/C/gnucash-guide.xml
+++ guide/C/gnucash-guide.xml
@@ -20,8 +20,8 @@
 <!ENTITY appendixc SYSTEM "appendixc.xml">
 <!ENTITY legal SYSTEM "legal.xml">
 <!ENTITY GFDL SYSTEM "fdl-appendix.xml">
-<!ENTITY manrevision "1.8.1">
-<!ENTITY date "14th June 2003">
+<!ENTITY manrevision "1.8.4">
+<!ENTITY date "11th April 2004">
 <!ENTITY app "GnuCash">
 ]>
 <!--
@@ -33,8 +33,8 @@
 -->
 <!--
       (Do not remove this comment block.)
-  Version: 1.8.1
-  Last modified: Jun 14, 2002
+  Version: 1.8.4
+  Last modified: April 11th, 2004
   Maintainers:
                Chris Lyttle   <chris at wilddev.net)
   Translators:
@@ -44,10 +44,15 @@
 <!-- please do not change the id; for translations, change lang to -->
 <!-- appropriate code -->
  <bookinfo>
-  <title>&app; Concepts Guide v1.8</title>
+  <title>&app; Tutorial and Concepts Guide</title>
   <edition>V&manrevision;</edition>
 
   <copyright>
+   <year>2003-2004</year>
+   <holder>Jon Lapham</holder>
+  </copyright>
+  
+  <copyright>
    <year>2002</year>
    <holder>Chris Lyttle</holder>
   </copyright>
@@ -122,11 +127,38 @@
         <revnumber>&app; Tutorial and Concepts Guide V&manrevision;</revnumber>
         <date>&date;</date>
         <revdescription>
-          <para role="author">Chris Lyttle
-            <email>chris at wilddev.net</email>
+          <para role="author">Jon Lapham
+            <email>lapham at extracta.com.br</email>
           </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Tutorial and Concepts Guide V1.8.3</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
           <para role="author">Jon Lapham
             <email>lapham at extracta.com.br</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Tutorial and Concepts Guide V1.8.2</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
+          <para role="author">Jon Lapham
+            <email>lapham at extracta.com.br</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Tutorial and Concepts Guide V1.8.1</revnumber>
+        <date>May 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
           </para>
           <para role="publisher">GnuCash Documentation Team</para>
         </revdescription>
Index: ch_currency.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_currency.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_currency.xml -Lguide/C/ch_currency.xml -u -r1.1 -r1.2
--- guide/C/ch_currency.xml
+++ guide/C/ch_currency.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_basics.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_basics.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -Lguide/C/ch_basics.xml -Lguide/C/ch_basics.xml -u -r1.4 -r1.5
--- guide/C/ch_basics.xml
+++ guide/C/ch_basics.xml
@@ -1,9 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.6
-  Last modified: December 22, 2002
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally written by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_reports.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_reports.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_reports.xml -Lguide/C/ch_reports.xml -u -r1.1 -r1.2
--- guide/C/ch_reports.xml
+++ guide/C/ch_reports.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_bus_ar.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_bus_ar.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_bus_ar.xml -Lguide/C/ch_bus_ar.xml -u -r1.1 -r1.2
--- guide/C/ch_bus_ar.xml
+++ guide/C/ch_bus_ar.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_bus_pay.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_bus_pay.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_bus_pay.xml -Lguide/C/ch_bus_pay.xml -u -r1.1 -r1.2
--- guide/C/ch_bus_pay.xml
+++ guide/C/ch_bus_pay.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_capgain.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_capgain.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_capgain.xml -Lguide/C/ch_capgain.xml -u -r1.1 -r1.2
--- guide/C/ch_capgain.xml
+++ guide/C/ch_capgain.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_cc.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_cc.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lguide/C/ch_cc.xml -Lguide/C/ch_cc.xml -u -r1.2 -r1.3
--- guide/C/ch_cc.xml
+++ guide/C/ch_cc.xml
@@ -1,9 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.6
-  Last modified: January 1, 2003
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally written by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_dep.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_dep.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_dep.xml -Lguide/C/ch_dep.xml -u -r1.1 -r1.2
--- guide/C/ch_dep.xml
+++ guide/C/ch_dep.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: appendixa.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/appendixa.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -Lguide/C/appendixa.xml -Lguide/C/appendixa.xml -u -r1.3 -r1.4
--- guide/C/appendixa.xml
+++ guide/C/appendixa.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_invest.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_invest.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -Lguide/C/ch_invest.xml -Lguide/C/ch_invest.xml -u -r1.3 -r1.4
--- guide/C/ch_invest.xml
+++ guide/C/ch_invest.xml
@@ -1,12 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.7
-  Last modified: January 30, 2004
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Contributors: 
-               Tomas Pospisek <tpo_deb at sourcepole.ch>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_accts.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_accts.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_accts.xml -Lguide/C/ch_accts.xml -u -r1.1 -r1.2
--- guide/C/ch_accts.xml
+++ guide/C/ch_accts.xml
@@ -1,9 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.6
-  Last modified: December 23, 2002
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
-       Chris Lyttle <chris at wilddev.net>
+               Chris Lyttle <chris at wilddev.net>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
 Originally written by Carol Champagne.
 Translators:
        (translators put your name and email here)
Index: ch_txns.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_txns.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -Lguide/C/ch_txns.xml -Lguide/C/ch_txns.xml -u -r1.4 -r1.5
--- guide/C/ch_txns.xml
+++ guide/C/ch_txns.xml
@@ -1,9 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.6
-  Last modified: December 26 2002
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally written by Carol Champagne.
   Translators:
                (translators put your name and email here)
@@ -716,7 +718,8 @@
   </listitem>
   <listitem>
   <para>
-From the <guilabel>Liabilities:Visa</guilabel> account register window, enter a basic 2 account transaction to set your starting balance to $1000, transferred from <guilabel>Equity:Starting Balances</guilabel>.  This is done by entering the $500 as a "decrease", since it is money you borrowed.  Record the transaction (press the 'enter' key, or click on the 'enter' icon).
+From the <guilabel>Liabilities:Visa</guilabel> account register window, enter
+a basic 2 account transaction to set your starting balance to $500, transferred from <guilabel>Equity:Starting Balances</guilabel>.  This is done by entering the $500 as a "decrease", since it is money you borrowed.  Record the transaction (press the 'enter' key, or click on the 'enter' icon).
   </para>
   </listitem>
   </orderedlist>
@@ -756,7 +759,7 @@
   </listitem>
   <listitem>
   <para>
-To transfer money from you savings account to your checking account, open the <guilabel>Assets:Savings</guilabel> account register, add a new transaction setting the Transfer to <guilabel>Assets:Checking</guilabel> in the amount of $1000.
+To transfer money from you savings account to your checking account, open the <guilabel>Assets:Savings</guilabel> account register, add a new transaction setting the Transfer to <guilabel>Assets:Checking</guilabel> in the amount of $100.
   </para>
   </listitem>
   </orderedlist>
Index: ch_bus_ap.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_bus_ap.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_bus_ap.xml -Lguide/C/ch_bus_ap.xml -u -r1.1 -r1.2
--- guide/C/ch_bus_ap.xml
+++ guide/C/ch_bus_ap.xml
@@ -1,11 +1,12 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.6.5
-  Last modified: November 24, 2001
+  Originally designed by Carol Champagne.
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
-  Originally designed by Carol Champagne.
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Translators:
                (translators put your name and email here)
 -->
Index: ch_loans.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_loans.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_loans.xml -Lguide/C/ch_loans.xml -u -r1.1 -r1.2
--- guide/C/ch_loans.xml
+++ guide/C/ch_loans.xml
@@ -1,10 +1,11 @@
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.6
-  Last modified: January 1, 2003
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
-  Written by Chris Lyttle
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally designed by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: ch_oview.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/guide/C/ch_oview.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lguide/C/ch_oview.xml -Lguide/C/ch_oview.xml -u -r1.1 -r1.2
--- guide/C/ch_oview.xml
+++ guide/C/ch_oview.xml
@@ -1,9 +1,11 @@
  <!--
       (Do not remove this comment block.)
-  Version: 1.7.6
-  Last modified: June 13, 2003
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers: 
                Chris Lyttle <chris at wilddev.net>
+  Author:
+  		Jon Lapham <lapham at extracta.com.br>
   Originally written by Carol Champagne.
   Translators:
                (translators put your name and email here)
Index: gnucash-help.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/help/C/gnucash-help.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -Lhelp/C/gnucash-help.xml -Lhelp/C/gnucash-help.xml -u -r1.5 -r1.6
--- help/C/gnucash-help.xml
+++ help/C/gnucash-help.xml
@@ -6,8 +6,8 @@
 <!ENTITY txf-categories SYSTEM "txf-categories.xml">
 <!ENTITY legal SYSTEM "legal.xml">
 <!ENTITY GFDL SYSTEM "fdl-appendix.xml">
-<!ENTITY manrevision "1.8.0">
-<!ENTITY date "2nd February 2003">
+<!ENTITY manrevision "1.8.4">
+<!ENTITY date "11th April 2004">
 <!ENTITY app "GnuCash">
 ]>
 <!--
@@ -19,8 +19,8 @@
 -->
 <!--
       (Do not remove this comment block.)
-  Version: 1.7.7
-  Last modified: January 05, 2003
+  Version: 1.8.4
+  Last modified: April 10th 2004
   Maintainers:
                Chris Lyttle   <chris at wilddev.net)
   Translators:
@@ -34,7 +34,7 @@
   <articleinfo>
    <title>&app; Help Manual</title>
    <copyright>
-     <year>2002</year>
+     <year>2002-2004</year>
      <holder>Chris Lyttle</holder>
    </copyright>
 
@@ -78,8 +78,48 @@
 
     <revhistory>
       <revision>
-        <revnumber>&app; Manual V&manrevision;</revnumber>
+        <revnumber>&app; Help Manual V&manrevision;</revnumber>
         <date>&date;</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.3</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.2</revnumber>
+        <date>Aug 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.1</revnumber>
+        <date>May 2003</date>
+        <revdescription>
+          <para role="author">Chris Lyttle
+            <email>chris at wilddev.net</email>
+          </para>
+          <para role="publisher">GnuCash Documentation Team</para>
+        </revdescription>
+      </revision>
+      <revision>
+        <revnumber>GnuCash Help Manual V1.8.0</revnumber>
+        <date>Jan 2003</date>
         <revdescription>
           <para role="author">Chris Lyttle
             <email>chris at wilddev.net</email>
Index: gnucash-help.xml
===================================================================
RCS file: /home/cvs/cvsroot/gnucash-docs/help/de_DE/gnucash-help.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -Lhelp/de_DE/gnucash-help.xml -Lhelp/de_DE/gnucash-help.xml -u -r1.9 -r1.10
--- help/de_DE/gnucash-help.xml
+++ help/de_DE/gnucash-help.xml
@@ -6,8 +6,8 @@
 <!ENTITY txf-categories SYSTEM "txf-categories.xml">
 <!ENTITY legal SYSTEM "legal.xml">
 <!ENTITY GFDL SYSTEM "fdl-appendix.xml">
-<!ENTITY manrevision "1.8.2">
-<!ENTITY date "14. April 2003">
+<!ENTITY manrevision "1.8.4">
+<!ENTITY date "11. April 2004">
 <!ENTITY app "GnuCash">
 ]>
 <!--


More information about the Gnucash-changes mailing list