update
svn: r2225
This commit is contained in:
parent
d8def400f3
commit
efd35b299c
@ -1,3 +1,9 @@
|
||||
2003-10-10 Don Allingham <dallingham@users.sourceforge.net>
|
||||
* 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 <twaugh@redhat.com>
|
||||
* src/PeopleStore.py: Fixed bug where you needed to expand the row
|
||||
twice before it shows the people.
|
||||
|
@ -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).
|
||||
|
@ -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
|
||||
|
@ -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),
|
||||
|
Loading…
Reference in New Issue
Block a user