update
svn: r2225
This commit is contained in:
parent
f9ed086ef8
commit
2c58ecf0fd
@ -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>
|
2003-10-10 Tim Waugh <twaugh@redhat.com>
|
||||||
* src/PeopleStore.py: Fixed bug where you needed to expand the row
|
* src/PeopleStore.py: Fixed bug where you needed to expand the row
|
||||||
twice before it shows the people.
|
twice before it shows the people.
|
||||||
|
3
TODO
3
TODO
@ -10,6 +10,9 @@
|
|||||||
the adding of media objects as well, since this will cause gramps to
|
the adding of media objects as well, since this will cause gramps to
|
||||||
try to create a thumbnail in a readonly database.
|
try to create a thumbnail in a readonly database.
|
||||||
* Startup tips.
|
* 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 sequence number to childlist in family view
|
||||||
* Add string substitutions for web page generation (name, report name,
|
* Add string substitutions for web page generation (name, report name,
|
||||||
date, etc).
|
date, etc).
|
||||||
|
@ -166,8 +166,8 @@ install-data-local:
|
|||||||
$(INSTALL_DATA) $(srcdir)/gramps.png $(DESTDIR)$(prefix)/share/pixmaps
|
$(INSTALL_DATA) $(srcdir)/gramps.png $(DESTDIR)$(prefix)/share/pixmaps
|
||||||
$(INSTALL) -d $(DESTDIR)$(prefix)/share/gnome/apps/Applications
|
$(INSTALL) -d $(DESTDIR)$(prefix)/share/gnome/apps/Applications
|
||||||
$(INSTALL_DATA) $(srcdir)/gramps.desktop $(DESTDIR)$(prefix)/share/gnome/apps/Applications
|
$(INSTALL_DATA) $(srcdir)/gramps.desktop $(DESTDIR)$(prefix)/share/gnome/apps/Applications
|
||||||
$(INSTALL) -d $(pkglibdir)
|
$(INSTALL) -d $(DESTDIR)$(pkglibdir)
|
||||||
$(INSTALL_DATA) grampslib.so $(pkglibdir)
|
$(INSTALL_DATA) grampslib.so $(DESTDIR)$(pkglibdir)
|
||||||
|
|
||||||
uninstall-local:
|
uninstall-local:
|
||||||
-rm $(DESTDIR)$(prefix)/share/pixmaps/gramps.png
|
-rm $(DESTDIR)$(prefix)/share/pixmaps/gramps.png
|
||||||
|
@ -18,10 +18,20 @@
|
|||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
#
|
#
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# GNOME
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
from gobject import TYPE_STRING, TYPE_PYOBJECT, TYPE_INT
|
from gobject import TYPE_STRING, TYPE_PYOBJECT, TYPE_INT
|
||||||
import gtk
|
import gtk
|
||||||
import pango
|
import pango
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
|
#
|
||||||
|
# constants
|
||||||
|
#
|
||||||
|
#-------------------------------------------------------------------------
|
||||||
_BCOL = 8
|
_BCOL = 8
|
||||||
_IDCOL = 1
|
_IDCOL = 1
|
||||||
|
|
||||||
@ -31,7 +41,8 @@ _IDCOL = 1
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
class PeopleStore:
|
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 = [
|
self.titles = [
|
||||||
(_('Name'),5,250), (_('ID'),1,50),(_('Gender'),2,70),
|
(_('Name'),5,250), (_('ID'),1,50),(_('Gender'),2,70),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user