From efd35b299c16dd1f2fe0a68182e5636d32a944a0 Mon Sep 17 00:00:00 2001 From: Don Allingham Date: Sat, 11 Oct 2003 02:25:15 +0000 Subject: [PATCH] update svn: r2225 --- gramps2/ChangeLog | 6 ++++++ gramps2/TODO | 3 +++ gramps2/src/Makefile.am | 4 ++-- gramps2/src/PeopleStore.py | 13 ++++++++++++- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 48e14e492..e296676a3 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,9 @@ +2003-10-10 Don Allingham + * src/gramps_main.py: fix reference paths + * src/PeopleView.py: remove gobject import + * src/FamilyView.py: return name prefix/surname tuple + * Makefile.am: installation path from grampslib.so + 2003-10-10 Tim Waugh * src/PeopleStore.py: Fixed bug where you needed to expand the row twice before it shows the people. diff --git a/gramps2/TODO b/gramps2/TODO index 8c3e455e5..768837063 100644 --- a/gramps2/TODO +++ b/gramps2/TODO @@ -10,6 +10,9 @@ the adding of media objects as well, since this will cause gramps to try to create a thumbnail in a readonly database. * Startup tips. +* Date calculator. + See http://sourceforge.net/mailarchive/forum.php?thread_id=3252078&forum_id=1993 +* Save report options settings. * Add sequence number to childlist in family view * Add string substitutions for web page generation (name, report name, date, etc). diff --git a/gramps2/src/Makefile.am b/gramps2/src/Makefile.am index 4394dd3d9..058e9b7c8 100644 --- a/gramps2/src/Makefile.am +++ b/gramps2/src/Makefile.am @@ -166,8 +166,8 @@ install-data-local: $(INSTALL_DATA) $(srcdir)/gramps.png $(DESTDIR)$(prefix)/share/pixmaps $(INSTALL) -d $(DESTDIR)$(prefix)/share/gnome/apps/Applications $(INSTALL_DATA) $(srcdir)/gramps.desktop $(DESTDIR)$(prefix)/share/gnome/apps/Applications - $(INSTALL) -d $(pkglibdir) - $(INSTALL_DATA) grampslib.so $(pkglibdir) + $(INSTALL) -d $(DESTDIR)$(pkglibdir) + $(INSTALL_DATA) grampslib.so $(DESTDIR)$(pkglibdir) uninstall-local: -rm $(DESTDIR)$(prefix)/share/pixmaps/gramps.png diff --git a/gramps2/src/PeopleStore.py b/gramps2/src/PeopleStore.py index aaab371f5..04901f95b 100644 --- a/gramps2/src/PeopleStore.py +++ b/gramps2/src/PeopleStore.py @@ -18,10 +18,20 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # +#------------------------------------------------------------------------- +# +# GNOME +# +#------------------------------------------------------------------------- from gobject import TYPE_STRING, TYPE_PYOBJECT, TYPE_INT import gtk import pango +#------------------------------------------------------------------------- +# +# constants +# +#------------------------------------------------------------------------- _BCOL = 8 _IDCOL = 1 @@ -31,7 +41,8 @@ _IDCOL = 1 # #------------------------------------------------------------------------- class PeopleStore: - def __init__(self,tree,parent,select_func=None,event_func=None,mode=gtk.SELECTION_SINGLE): + def __init__(self,tree,parent,select_func=None,event_func=None, + mode=gtk.SELECTION_SINGLE): self.titles = [ (_('Name'),5,250), (_('ID'),1,50),(_('Gender'),2,70),