diff --git a/AUTHORS b/AUTHORS index fcaef79481..f44945da5c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -26,7 +26,7 @@ Rob Browning abused everyone for not using perl, infrastructure, is handling the whole guile/perl extension language thing, and is dealing with configuration & configurability. -Dave Peticolas hacks obsessively on +Dave Peticolas hacks obsessively on GnuCash. But he can stop anytime he wants to. Really. Bill Gribble works magic. If your checks print @@ -60,6 +60,7 @@ Hubert Figuiere patch to gnc-prices Jan-Uwe Finck for German message translation Ron Forrester for gnome patches Dave Freese for leap-year fix +John Goerzen file i/o fix for 64-bit architectures Bill Gribble qif importation code Otto Hammersmith for RedHat RPM version Eric Hanchrow updated currency documentation @@ -79,12 +80,12 @@ Heath Martin gnome patches, major register work Matt Martin guile error handling code Robert Graham Merkel reporting, gnome, and config patches Tim Mooney port to alpha-dec-osf4.0f -G. Allen Morris III for QIF core dump +G. Allen Morris III for QIF core dump Brent Neal TIAA-CREF support. Peter Norton for a valiant attempt at a GTK port OmNiBuS web site graphics & content Myroslav Opyr for misc patches -Dave Peticolas extensive intelligent patches +Dave Peticolas extensive intelligent patches Laurent P{'e}lecq i18n patches with gettext Alain Peyrat for configure.in patches Peter Pointner QIF import fixes, Qt patches diff --git a/ChangeLog b/ChangeLog index 6e13e515a4..ef8ac7bc9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-06-03 Dave Peticolas + + * src/engine/FileIO.c: John Goerzen's patch for 64-bit + architectures. + 2000-06-02 Dave Peticolas * src/register/splitreg.c: added functions for getting cell types diff --git a/doc/html/C/xacc-about.html b/doc/html/C/xacc-about.html index dd28281836..2c5bddb8c1 100644 --- a/doc/html/C/xacc-about.html +++ b/doc/html/C/xacc-about.html @@ -201,8 +201,7 @@ the whole guile/perl extension language thing, and is dealing with configuration and configurability. -
Dave - Peticolas
+
Dave Peticolas
hacks obsessively on GnuCash. But he can stop anytime he wants to. Really.
@@ -326,6 +325,10 @@
for leap-year fix
+
John Goerzen
+ +
file i/o fix for 64-bit architectures
+
Bill Gribble
diff --git a/doc/html/fr/xacc-about.html b/doc/html/fr/xacc-about.html index ae636da72a..254d610ebe 100644 --- a/doc/html/fr/xacc-about.html +++ b/doc/html/fr/xacc-about.html @@ -245,7 +245,7 @@ configuration et  configurabilité. le portage en Qt/KDE
 
-Dave Peticolas
+Dave Peticolas
          travaille d'une manière obsédante sur GnuCash. Mais il peut s'arrêter diff --git a/lib/.cvsignore b/lib/.cvsignore deleted file mode 100644 index bf3259ab51..0000000000 --- a/lib/.cvsignore +++ /dev/null @@ -1,5 +0,0 @@ -Makefile -tmp -obj -g-wrap-install -g-wrap.configure diff --git a/po/en_GB.po b/po/en_GB.po index d5e0399f67..76aab8476a 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -957,7 +957,7 @@ msgstr "" #: messages-i18n.c:216 po/guile_strings.txt:4 msgid "Mutual Fund" -msgstr "" +msgstr "Unit Trust" #: messages-i18n.c:217 msgid "New Account" @@ -3132,7 +3132,7 @@ msgstr "" #: src/gnome/glade-gnc-dialogs.c:646 msgid "Mutual" -msgstr "" +msgstr "Unit Trust" #: src/gnome/glade-gnc-dialogs.c:711 src/gnome/glade-gnc-dialogs.c:719 msgid "Print Preview" diff --git a/src/.cvsignore b/src/.cvsignore index 7ecc9f07a6..d910ca040b 100644 --- a/src/.cvsignore +++ b/src/.cvsignore @@ -1,6 +1,4 @@ Makefile -tmp -obj *.diff *.diffs *.patch diff --git a/src/engine/.cvsignore b/src/engine/.cvsignore index 5725bc8be7..f3c7a7c5da 100644 --- a/src/engine/.cvsignore +++ b/src/engine/.cvsignore @@ -1,3 +1 @@ Makefile -tmp -obj diff --git a/src/engine/perm.pl b/src/engine/perm.pl deleted file mode 100755 index 931126356e..0000000000 --- a/src/engine/perm.pl +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/perl -# -# This is a short perl script that prints all permutations -# of five objects; should be easy to generalize to more. - -sub rotate { - local ($n, $i); - $n = $_[0]; - - $tmp = $arr[0]; - for ($i=0; $i<$n-1; $i++) { - $arr[$i] = $arr[$i+1]; - } - $arr[$n-1] = $tmp; -} - -sub recur { - local ($n, $i); - $n = $_[0]; - - if (3>=$n) { - print "DECLARE ($arr[4], $arr[3], $arr[2])\n"; - return; - } - - for ($i=0; $i<$n-1; $i++) { - &rotate ($n-1); - &recur ($n-1); - } -} - -@arr=(DESC,MEMO,AMT,NUM,DATE); -# @arr=(1..5); - -&recur (6); - diff --git a/src/gnome/.cvsignore b/src/gnome/.cvsignore index 82b51399f0..8029574ab6 100644 --- a/src/gnome/.cvsignore +++ b/src/gnome/.cvsignore @@ -1,6 +1,4 @@ Makefile -tmp -obj *.diff backup.glade glade-cb-gnc-dialogs.c diff --git a/src/optional/swig/.cvsignore b/src/optional/swig/.cvsignore index 95a8cdb19f..72f63e47e1 100644 --- a/src/optional/swig/.cvsignore +++ b/src/optional/swig/.cvsignore @@ -1,6 +1,4 @@ Makefile -tmp -obj gnucash.engine.i gnucash-engine-perl5_wrap.c gnucash.engine_wrap.doc diff --git a/src/register/.cvsignore b/src/register/.cvsignore index 5725bc8be7..f3c7a7c5da 100644 --- a/src/register/.cvsignore +++ b/src/register/.cvsignore @@ -1,3 +1 @@ Makefile -tmp -obj diff --git a/src/register/gnome/.cvsignore b/src/register/gnome/.cvsignore index 5725bc8be7..f3c7a7c5da 100644 --- a/src/register/gnome/.cvsignore +++ b/src/register/gnome/.cvsignore @@ -1,3 +1 @@ Makefile -tmp -obj