update
svn: r1717
This commit is contained in:
parent
cec9010812
commit
ec5e7e7bc7
18
ChangeLog
18
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2003-06-12 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
|
* src/DrawDoc.py: support for drawing wedges and rotated text
|
||||||
|
* src/docgen/PSDrawDoc.py: postscipt support for wedges and rotated
|
||||||
|
text
|
||||||
|
* src/docgen/PdfDrawDoc.py: PDF support for wedges and rotated text
|
||||||
|
* src/docgen/SvgDrawDoc.py: SVG support for wedges and rotated text
|
||||||
|
* src/docgen/OpenDrawDoc.py: OpenOffice support for wedges and rotated
|
||||||
|
text
|
||||||
|
* src/plugins/FanChart.py: Fan chart report
|
||||||
|
|
||||||
2003-06-12 Alex Roitman <shura@alex.neuro.umn.edu>
|
2003-06-12 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
* src/docgen/KwordDoc.py (write_text): Replace & with & in text.
|
* src/docgen/KwordDoc.py (write_text): Replace & with & in text.
|
||||||
Closes gramps-bugs-649228, finally.
|
Closes gramps-bugs-649228, finally.
|
||||||
@ -8,6 +18,14 @@
|
|||||||
* src/docgen/OpenOfficeDoc.py: Fix typo. Prevent images from being
|
* src/docgen/OpenOfficeDoc.py: Fix typo. Prevent images from being
|
||||||
copied more than once.
|
copied more than once.
|
||||||
|
|
||||||
|
2003-06-11 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
|
* src/GenericFilter.py: rewrote IsAncestorOf and IsDescendantOf rules
|
||||||
|
to be more efficient and to properly handle loop detection.
|
||||||
|
* src/RelLib.py: Added the getValidDeath and getValidBirth methods to
|
||||||
|
the Person class
|
||||||
|
* src/plugins/WebPage.py: Handle filter errors
|
||||||
|
* src/docgen/OpenOfficeDoc.py: pass non-unicode names to zipfile
|
||||||
|
|
||||||
2003-06-11 Alex Roitman <shura@alex.neuro.umn.edu>
|
2003-06-11 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||||
* src/EditPlace.py (on_switch_page): Fix page numbers to enable proper
|
* src/EditPlace.py (on_switch_page): Fix page numbers to enable proper
|
||||||
loading of gallery and references.
|
loading of gallery and references.
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -1642,7 +1642,7 @@ INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
RELEASE=rc1
|
RELEASE=1
|
||||||
|
|
||||||
VERSIONSTRING=$VERSION
|
VERSIONSTRING=$VERSION
|
||||||
if test x"$RELEASE" != "x"
|
if test x"$RELEASE" != "x"
|
||||||
|
11
gramps.spec
11
gramps.spec
@ -1,5 +1,5 @@
|
|||||||
%define ver 0.9.2
|
%define ver 0.9.2
|
||||||
%define rel rc1
|
%define rel 1
|
||||||
%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
|
||||||
@ -29,6 +29,7 @@ BuildRequires: scrollkeeper >= 0.3.5
|
|||||||
BuildRequires: automake >= 1.6
|
BuildRequires: automake >= 1.6
|
||||||
BuildRequires: autoconf >= 2.52
|
BuildRequires: autoconf >= 2.52
|
||||||
BuildRequires: rpm >= 4.1
|
BuildRequires: rpm >= 4.1
|
||||||
|
BuildRequires: desktop-file-utils >= 0.2.92
|
||||||
|
|
||||||
%description
|
%description
|
||||||
gramps (Genealogical Research and Analysis Management Programming
|
gramps (Genealogical Research and Analysis Management Programming
|
||||||
@ -54,6 +55,12 @@ CFLAGS="$RPM_OPT_FLAGS" make
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
mkdir $RPM_BUILD_ROOT%{_datadir}/applications
|
||||||
|
desktop-file-install --vendor gramps --delete-original \
|
||||||
|
--dir $RPM_BUILD_ROOT%{_datadir}/applications \
|
||||||
|
--add-category Application \
|
||||||
|
--add-category Utility \
|
||||||
|
$RPM_BUILD_ROOT%{_datadir}/gnome/apps/Applications/gramps.desktop
|
||||||
%find_lang gramps
|
%find_lang gramps
|
||||||
rm -rf $RPM_BUILD_ROOT/%{_localstatedir}/scrollkeeper/
|
rm -rf $RPM_BUILD_ROOT/%{_localstatedir}/scrollkeeper/
|
||||||
|
|
||||||
@ -68,7 +75,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
|
|
||||||
%{prefix}/bin/gramps
|
%{prefix}/bin/gramps
|
||||||
|
|
||||||
%{_datadir}/gnome/apps/Applications/gramps.desktop
|
%{_datadir}/applications/*
|
||||||
%{_datadir}/pixmaps/gramps.png
|
%{_datadir}/pixmaps/gramps.png
|
||||||
|
|
||||||
%{_datadir}/gramps/*
|
%{_datadir}/gramps/*
|
||||||
|
@ -1245,7 +1245,6 @@ class EditPerson:
|
|||||||
Utils.modified()
|
Utils.modified()
|
||||||
|
|
||||||
def on_apply_person_clicked(self,obj):
|
def on_apply_person_clicked(self,obj):
|
||||||
|
|
||||||
surname = self.surname_field.get_text()
|
surname = self.surname_field.get_text()
|
||||||
suffix = self.suffix.get_text()
|
suffix = self.suffix.get_text()
|
||||||
prefix = self.prefix.get_text()
|
prefix = self.prefix.get_text()
|
||||||
|
@ -260,7 +260,7 @@ RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \
|
|||||||
install-exec-recursive installdirs-recursive install-recursive \
|
install-exec-recursive installdirs-recursive install-recursive \
|
||||||
uninstall-recursive check-recursive installcheck-recursive
|
uninstall-recursive check-recursive installcheck-recursive
|
||||||
DIST_COMMON = README $(dist_pkgdata_DATA) $(pkgpython_PYTHON) AUTHORS \
|
DIST_COMMON = README $(dist_pkgdata_DATA) $(pkgpython_PYTHON) AUTHORS \
|
||||||
ChangeLog Makefile.am Makefile.in NEWS const.py.in
|
ChangeLog Makefile.am Makefile.in NEWS TODO const.py.in
|
||||||
DIST_SUBDIRS = $(SUBDIRS)
|
DIST_SUBDIRS = $(SUBDIRS)
|
||||||
all: all-recursive
|
all: all-recursive
|
||||||
|
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
# If not using GNU make, then list all .py files individually
|
# If not using GNU make, then list all .py files individually
|
||||||
|
|
||||||
pkgpython_PYTHON = \
|
pkgpython_PYTHON = \
|
||||||
AbiWordDoc.py\
|
|
||||||
AbiWord2Doc.py\
|
AbiWord2Doc.py\
|
||||||
|
AbiWordDoc.py\
|
||||||
HtmlDoc.py\
|
HtmlDoc.py\
|
||||||
KwordDoc.py\
|
KwordDoc.py\
|
||||||
LaTeXDoc.py\
|
LaTeXDoc.py\
|
||||||
|
@ -114,6 +114,7 @@ pyexecdir = @pyexecdir@
|
|||||||
pythondir = @pythondir@
|
pythondir = @pythondir@
|
||||||
|
|
||||||
pkgpython_PYTHON = \
|
pkgpython_PYTHON = \
|
||||||
|
AbiWord2Doc.py\
|
||||||
AbiWordDoc.py\
|
AbiWordDoc.py\
|
||||||
HtmlDoc.py\
|
HtmlDoc.py\
|
||||||
KwordDoc.py\
|
KwordDoc.py\
|
||||||
|
Loading…
Reference in New Issue
Block a user