update
svn: r2152
This commit is contained in:
parent
e0b537f7c8
commit
7047da9ffa
@ -2,6 +2,7 @@
|
|||||||
* src/gramps_main.py: pass list of filtered people to find dialog
|
* src/gramps_main.py: pass list of filtered people to find dialog
|
||||||
* src/Find.py: pass list of filtered people to find dialog
|
* src/Find.py: pass list of filtered people to find dialog
|
||||||
* src/po/hu.po: set character set to ISO-8859-2, fix typo
|
* src/po/hu.po: set character set to ISO-8859-2, fix typo
|
||||||
|
* src/Date.py: Reset date if a empty text string is passed
|
||||||
|
|
||||||
2003-09-20 Egyeki Gergely <egeri@elte.hu>
|
2003-09-20 Egyeki Gergely <egeri@elte.hu>
|
||||||
* src/po/hu.po: Hungarian translation
|
* src/po/hu.po: Hungarian translation
|
||||||
|
4
TODO
4
TODO
@ -25,4 +25,8 @@
|
|||||||
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.
|
||||||
|
* Add sequence number to childlist in family view
|
||||||
|
* Add completeness level to person/family
|
||||||
|
* Add string substitutions for web page generation (name, report name,
|
||||||
|
date, etc).
|
||||||
* And a whole lot more....
|
* And a whole lot more....
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -1706,7 +1706,7 @@ echo "${ECHO_T}no" >&6
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
LANGUAGES="cs da_DK de es fr it nl pl pt_BR ro ru sv"
|
LANGUAGES="hu zh_CN cs da_DK de es fr it nl pl pt_BR ro ru sv"
|
||||||
|
|
||||||
|
|
||||||
DISTLANGS=
|
DISTLANGS=
|
||||||
|
@ -19,7 +19,7 @@ AC_SUBST(VERSIONSTRING)
|
|||||||
AC_PATH_PROG(MSGFMT, msgfmt)
|
AC_PATH_PROG(MSGFMT, msgfmt)
|
||||||
AC_PATH_PROG(MSGCONV, msgconv)
|
AC_PATH_PROG(MSGCONV, msgconv)
|
||||||
|
|
||||||
LANGUAGES="cs da_DK de es fr it nl pl pt_BR ro ru sv"
|
LANGUAGES="hu zh_CN cs da_DK de es fr it nl pl pt_BR ro ru sv"
|
||||||
AC_SUBST(LANGUAGES)
|
AC_SUBST(LANGUAGES)
|
||||||
|
|
||||||
DISTLANGS=
|
DISTLANGS=
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
%define ver 0.9.4
|
%define ver 0.9.4
|
||||||
%define rel 0.CVS20030908
|
%define rel 0.CVS20030919
|
||||||
%define prefix /usr
|
%define prefix /usr
|
||||||
%define localstatedir /var/lib
|
%define localstatedir /var/lib
|
||||||
# Ensure that internal RPM macros for configure & makeinstall
|
# Ensure that internal RPM macros for configure & makeinstall
|
||||||
@ -78,7 +78,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/applications/*
|
%{_datadir}/applications/*
|
||||||
%{_datadir}/pixmaps/gramps.png
|
%{_datadir}/pixmaps/gramps.png
|
||||||
|
|
||||||
%{_datadir}/gramps/*
|
%{_libdir}/gramps
|
||||||
|
%{_datadir}/gramps
|
||||||
%{_datadir}/omf/gramps
|
%{_datadir}/omf/gramps
|
||||||
|
|
||||||
%post
|
%post
|
||||||
@ -88,6 +89,9 @@ if which scrollkeeper-update>/dev/null 2>&1; then scrollkeeper-update; fi
|
|||||||
if which scrollkeeper-update>/dev/null 2>&1; then scrollkeeper-update; fi
|
if which scrollkeeper-update>/dev/null 2>&1; then scrollkeeper-update; fi
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Sep 19 2003 Tim Waugh <twaugh@redhat.com>
|
||||||
|
- Own %%{_datadir/gramps directory.
|
||||||
|
- Ship %%{_libdir}/gramps.
|
||||||
* Mon May 20 2003 Donald Peterson <dpeterson@sigmaxi.org>
|
* Mon May 20 2003 Donald Peterson <dpeterson@sigmaxi.org>
|
||||||
- Override RPMs default of localstatedir to /var/lib..
|
- Override RPMs default of localstatedir to /var/lib..
|
||||||
This is done in accordance with GNOME and FHS compliance guidelines
|
This is done in accordance with GNOME and FHS compliance guidelines
|
||||||
|
@ -919,6 +919,7 @@ class EditPerson:
|
|||||||
def did_data_change(self):
|
def did_data_change(self):
|
||||||
"""Check to see if any of the data has changed from the
|
"""Check to see if any of the data has changed from the
|
||||||
original record"""
|
original record"""
|
||||||
|
|
||||||
surname = unicode(self.surname_field.get_text())
|
surname = unicode(self.surname_field.get_text())
|
||||||
if GrampsCfg.capitalize:
|
if GrampsCfg.capitalize:
|
||||||
surname = surname.upper()
|
surname = surname.upper()
|
||||||
@ -1281,6 +1282,9 @@ class EditPerson:
|
|||||||
|
|
||||||
name = self.pname
|
name = self.pname
|
||||||
|
|
||||||
|
self.birth.setDate(self.bdate.get_text())
|
||||||
|
self.birth.setPlace(self.get_place(self.bplace,1))
|
||||||
|
|
||||||
if idval != self.person.getId():
|
if idval != self.person.getId():
|
||||||
m = self.db.getPersonMap()
|
m = self.db.getPersonMap()
|
||||||
if not m.has_key(idval):
|
if not m.has_key(idval):
|
||||||
@ -1342,9 +1346,6 @@ class EditPerson:
|
|||||||
p = self.db.getPlaceDisplay(key)
|
p = self.db.getPlaceDisplay(key)
|
||||||
self.pdmap[p[0]] = key
|
self.pdmap[p[0]] = key
|
||||||
|
|
||||||
self.birth.setDate(self.bdate.get_text())
|
|
||||||
self.birth.setPlace(self.get_place(self.bplace,1))
|
|
||||||
|
|
||||||
if not self.person.getBirth().are_equal(self.birth):
|
if not self.person.getBirth().are_equal(self.birth):
|
||||||
self.person.setBirth(self.birth)
|
self.person.setBirth(self.birth)
|
||||||
Utils.modified()
|
Utils.modified()
|
||||||
|
@ -563,7 +563,7 @@ install-data-local:
|
|||||||
$(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 $(pkglibdir)
|
||||||
$(INSTALL_DATA) $(srcdir)/grampslib.so $(pkglibdir)
|
$(INSTALL_DATA) grampslib.so $(pkglibdir)
|
||||||
|
|
||||||
uninstall-local:
|
uninstall-local:
|
||||||
-rm $(DESTDIR)$(prefix)/share/pixmaps/gramps.png
|
-rm $(DESTDIR)$(prefix)/share/pixmaps/gramps.png
|
||||||
|
@ -147,10 +147,10 @@ pkgpython_PYTHON = \
|
|||||||
WritePkg.py\
|
WritePkg.py\
|
||||||
WriteCD.py\
|
WriteCD.py\
|
||||||
rel_ru.py\
|
rel_ru.py\
|
||||||
eval.py\
|
eval.py\
|
||||||
leak.py\
|
leak.py\
|
||||||
SimpleBookTitle.py\
|
SimpleBookTitle.py\
|
||||||
CustomBookText.py
|
CustomBookText.py
|
||||||
|
|
||||||
|
|
||||||
GLADEFILES = \
|
GLADEFILES = \
|
||||||
|
@ -246,6 +246,11 @@ uninstall-local:
|
|||||||
@MSGCONV@ --to-code=UTF-8 $< -o temp.po
|
@MSGCONV@ --to-code=UTF-8 $< -o temp.po
|
||||||
$(MSGFMT) -v temp.po -o $@
|
$(MSGFMT) -v temp.po -o $@
|
||||||
rm temp.po
|
rm temp.po
|
||||||
|
|
||||||
|
zh_CN.mo: zh_CN.po
|
||||||
|
iconv -f GB2312 -t UTF-8 zh_CN.po > temp.po
|
||||||
|
$(MSGFMT) -v temp.po -o $@
|
||||||
|
rm temp.po
|
||||||
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
||||||
# Otherwise a system limit (for SysV at least) may be exceeded.
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|
||||||
.NOEXPORT:
|
.NOEXPORT:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user