Various small fixes.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2402 57a11ea4-9604-0410-9ed3-97b8803252fd
zzzoldreleases/1.4
Dave Peticolas 26 years ago
parent d61a1258b9
commit f3d729aa02

@ -26,7 +26,7 @@ Rob Browning <rlb@cs.utexas.edu> abused everyone for not using perl,
infrastructure, is handling the whole guile/perl extension language
thing, and is dealing with configuration & configurability.
Dave Peticolas <peticola@cs.ucdavis.edu> hacks obsessively on
Dave Peticolas <dave@krondo.com> hacks obsessively on
GnuCash. But he can stop anytime he wants to. Really.
Bill Gribble <grib@billgribble.com> works magic. If your checks print
@ -60,6 +60,7 @@ Hubert Figuiere <hfiguiere@teaser.fr> patch to gnc-prices
Jan-Uwe Finck <ju_finck@mail.netwave.de> for German message translation
Ron Forrester <rjf@aracnet.com> for gnome patches
Dave Freese <DFreese@osc.uscg.mil> for leap-year fix
John Goerzen <jgoerzen@complete.org> file i/o fix for 64-bit architectures
Bill Gribble <grib@billgribble.com> qif importation code
Otto Hammersmith <otto@bug.redhat.com> for RedHat RPM version
Eric Hanchrow <offby1@blarg.net> updated currency documentation
@ -79,12 +80,12 @@ Heath Martin <martinh@pegasus.cc.ucf.edu> gnome patches, major register work
Matt Martin <mgmartin@abacusnet.net> guile error handling code
Robert Graham Merkel <rgmerk@mira.net> reporting, gnome, and config patches
Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu> port to alpha-dec-osf4.0f
G. Allen Morris III <gam3@ann.softgams.com> for QIF core dump
G. Allen Morris III <gam3@ann.softgams.com> for QIF core dump
Brent Neal <brent@baton.phys.lsu.edu> TIAA-CREF support.
Peter Norton <spacey@inch.com> for a valiant attempt at a GTK port
OmNiBuS <webmaster@obsidian.uia.net> web site graphics & content
Myroslav Opyr <mopyr@IPM.Lviv.UA> for misc patches
Dave Peticolas <peticola@morpheus.cs.ucdavis.edu> extensive intelligent patches
Dave Peticolas <dave@krondo.com> extensive intelligent patches
Laurent P{'e}lecq <laurent.pelecq@wanadoo.fr> i18n patches with gettext
Alain Peyrat <Alain.Peyrat@nmu.alcatel.fr> for configure.in patches
Peter Pointner <peter@wuzel.m.isar.de> QIF import fixes, Qt patches

@ -1,3 +1,8 @@
2000-06-03 Dave Peticolas <dave@krondo.com>
* src/engine/FileIO.c: John Goerzen's patch for 64-bit
architectures.
2000-06-02 Dave Peticolas <dave@krondo.com>
* src/register/splitreg.c: added functions for getting cell types

@ -201,8 +201,7 @@
the whole guile/perl extension language thing, and is dealing
with configuration and configurability.</dd>
<dt><a href="mailto:peticola@cs.ucdavis.edu">Dave
Peticolas</a></dt>
<dt><a href="mailto:dave@krondo.com">Dave Peticolas</a></dt>
<dd>hacks obsessively on GnuCash. But he can stop anytime he
wants to. Really.</dd>
@ -326,6 +325,10 @@
<dd>for leap-year fix</dd>
<dt><a href="mailto:jgoerzen@complete.org">John Goerzen</a></dt>
<dd>file i/o fix for 64-bit architectures</dd>
<dt><a href="mailto:grib@billgribble.com">Bill
Gribble</a></dt>

@ -245,7 +245,7 @@ configuration et&nbsp; configurabilit&eacute;.</dd>
le portage en Qt/KDE
<br>&nbsp;
<dt>
<a href="mailto:peticola@cs.ucdavis.edu">Dave Peticolas</a></dt>
<a href="mailto:dave@krondo.com">Dave Peticolas</a></dt>
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; travaille d'une
mani&egrave;re obs&eacute;dante sur GnuCash. Mais il peut s'arr&ecirc;ter

@ -1,5 +0,0 @@
Makefile
tmp
obj
g-wrap-install
g-wrap.configure

@ -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"

@ -1,6 +1,4 @@
Makefile
tmp
obj
*.diff
*.diffs
*.patch

@ -1,3 +1 @@
Makefile
tmp
obj

@ -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);

@ -1,6 +1,4 @@
Makefile
tmp
obj
*.diff
backup.glade
glade-cb-gnc-dialogs.c

@ -1,6 +1,4 @@
Makefile
tmp
obj
gnucash.engine.i
gnucash-engine-perl5_wrap.c
gnucash.engine_wrap.doc

@ -1,3 +1 @@
Makefile
tmp
obj

Loading…
Cancel
Save