2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-02-04 03:33:53 +05:30
|
|
|
# Copyright (C) 2000-2006 Donald N. Allingham
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
2004-05-05 07:34:30 +05:30
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
"""
|
|
|
|
Provides sorting routines for use in GRAMPS. Since these functions are
|
|
|
|
intended to provide fast sorting, they tend to bypass access methods,
|
|
|
|
and directly use class members. For this reason, care needs to be taken
|
|
|
|
to make sure these remain in sync with the rest of the design.
|
|
|
|
"""
|
|
|
|
|
2005-06-05 09:31:56 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Standard python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2004-08-27 03:24:14 +05:30
|
|
|
import locale
|
|
|
|
|
2002-10-20 19:55:16 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2005-06-05 09:31:56 +05:30
|
|
|
# GRAMPS Modules
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-02-04 03:33:53 +05:30
|
|
|
from RelLib import Date
|
2005-06-05 09:31:56 +05:30
|
|
|
from NameDisplay import displayer as _nd
|
2002-10-20 19:55:16 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
2005-06-05 09:31:56 +05:30
|
|
|
# Constants
|
2002-10-20 19:55:16 +05:30
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
|
2002-12-01 09:10:47 +05:30
|
|
|
_plist = [ 'de', 'van', 'von', 'la', 'di', 'le', 'du' ]
|
|
|
|
|
|
|
|
_prefix = {}
|
|
|
|
for i in _plist:
|
|
|
|
_prefix[i] = 1
|
2002-10-20 19:55:16 +05:30
|
|
|
|
2004-05-05 07:34:30 +05:30
|
|
|
class Sort:
|
|
|
|
def __init__(self,database):
|
|
|
|
self.database = database
|
|
|
|
|
|
|
|
def by_last_name(self,first_id,second_id):
|
|
|
|
"""Sort routine for comparing two last names. If last names are equal,
|
|
|
|
uses the given name and suffix"""
|
2004-08-07 10:46:57 +05:30
|
|
|
first = self.database.get_person_from_handle(first_id)
|
|
|
|
second = self.database.get_person_from_handle(second_id)
|
2004-05-05 07:34:30 +05:30
|
|
|
|
|
|
|
name1 = first.get_primary_name()
|
|
|
|
name2 = second.get_primary_name()
|
|
|
|
|
2005-08-18 11:28:28 +05:30
|
|
|
fsn = name1.get_surname()
|
|
|
|
ssn = name2.get_surname()
|
2004-05-05 07:34:30 +05:30
|
|
|
|
|
|
|
if fsn == ssn :
|
2005-08-18 11:28:28 +05:30
|
|
|
ffn = name1.get_first_name()
|
|
|
|
sfn = name2.get_first_name()
|
2004-05-05 07:34:30 +05:30
|
|
|
if ffn == sfn:
|
2005-08-18 11:28:28 +05:30
|
|
|
return locale.strcoll(name1.get_suffix(), name2.get_suffix())
|
2004-05-05 07:34:30 +05:30
|
|
|
else:
|
2004-08-27 03:24:14 +05:30
|
|
|
return locale.strcoll(ffn, sfn)
|
2004-05-05 07:34:30 +05:30
|
|
|
else:
|
2004-08-27 03:24:14 +05:30
|
|
|
return locale.strcoll(fsn, ssn)
|
2004-05-05 07:34:30 +05:30
|
|
|
|
2005-06-05 09:31:56 +05:30
|
|
|
def by_sorted_name(self,first_id,second_id):
|
|
|
|
"""
|
|
|
|
Sort routine for comparing two displayed names.
|
|
|
|
"""
|
|
|
|
|
|
|
|
first = self.database.get_person_from_handle(first_id)
|
|
|
|
second = self.database.get_person_from_handle(second_id)
|
|
|
|
|
|
|
|
name1 = _nd.sorted(first)
|
|
|
|
name2 = _nd.sorted(second)
|
|
|
|
|
|
|
|
return locale.strcoll(name1,name2)
|
|
|
|
|
2004-05-05 07:34:30 +05:30
|
|
|
def by_birthdate(self,first_id,second_id):
|
|
|
|
"""Sort routine for comparing two people by birth dates. If the birth dates
|
|
|
|
are equal, sorts by name"""
|
2004-08-07 10:46:57 +05:30
|
|
|
first = self.database.get_person_from_handle(first_id)
|
|
|
|
second = self.database.get_person_from_handle(second_id)
|
2004-05-05 07:34:30 +05:30
|
|
|
|
2006-03-30 08:47:33 +05:30
|
|
|
birth_ref1 = first.get_birth_ref()
|
|
|
|
if birth_ref1:
|
|
|
|
date1 = self.database.get_event_from_handle(birth_ref1.ref).get_date_object()
|
2004-05-05 07:34:30 +05:30
|
|
|
else:
|
2006-02-04 03:33:53 +05:30
|
|
|
date1 = Date()
|
2004-05-05 07:34:30 +05:30
|
|
|
|
2006-03-30 08:47:33 +05:30
|
|
|
birth_ref2 = second.get_birth_ref()
|
|
|
|
if birth_ref2:
|
|
|
|
date2 = self.database.get_event_from_handle(birth_ref2.ref).get_date_object()
|
2004-05-05 07:34:30 +05:30
|
|
|
else:
|
2006-02-04 03:33:53 +05:30
|
|
|
date2 = Date()
|
2004-05-05 07:34:30 +05:30
|
|
|
|
2005-08-18 11:28:28 +05:30
|
|
|
dsv1 = date1.get_sort_value()
|
|
|
|
dsv2 = date2.get_sort_value()
|
|
|
|
|
|
|
|
val = cmp(dsv1,dsv2)
|
2004-05-05 07:34:30 +05:30
|
|
|
if val == 0:
|
|
|
|
return self.by_last_name(first_id,second_id)
|
|
|
|
return val
|
2004-05-07 09:41:31 +05:30
|
|
|
|
|
|
|
def by_date(self,a_id,b_id):
|
|
|
|
"""Sort routine for comparing two events by their dates. """
|
|
|
|
if not (a_id and b_id):
|
|
|
|
return 0
|
* src/AddSpouse.py, src/ChooseParents.py, src/EditPerson.py,
src/EditPlace.py, src/EditSource.py, src/EventEdit.py,
src/FamilyView.py, src/GenericFilter.py,
src/Marriage.py, src/PedView.py, src/PeopleModel.py,
src/PlaceView.py, src/RelLib.py, src/SelectChild.py,
src/Sort.py, src/SourceView.py, src/SubstKeywords.py,
src/WriteGedcom.py, src/WriteXML.py, src/plugins/AncestorReport.py,
src/plugins/Ancestors.py, src/plugins/ChangeTypes.py,
src/plugins/DescendReport.py, src/plugins/DetDescendantReport.py,
src/plugins/EventCmp.py, src/plugins/FamilyGroup.py,
src/plugins/FanChart.py, src/plugins/FtmStyleAncestors.py,
src/plugins/FtmStyleDescendants.py, src/plugins/GraphViz.py,
src/plugins/IndivComplete.py, src/plugins/IndivSummary.py,
src/plugins/Merge.py, src/plugins/RelCalc.py, src/plugins/RelGraph.py,
src/plugins/Summary.py, src/plugins/TimeLine.py, src/plugins/Verify.py,
src/plugins/WebPage.py, src/plugins/WriteCD.py,
src/plugins/WritePkg.py, src/plugins/DetAncestralReport.py:
Use get_event_from_handle (not find_ ).
svn: r3462
2004-08-22 00:26:01 +05:30
|
|
|
a = self.database.get_event_from_handle(a_id)
|
|
|
|
b = self.database.get_event_from_handle(b_id)
|
2004-10-03 04:37:43 +05:30
|
|
|
return cmp(a.get_date_object(),b.get_date_object())
|
2005-02-13 09:24:47 +05:30
|
|
|
|
|
|
|
def by_place_title(self,a_id,b_id):
|
|
|
|
"""Sort routine for comparing two events by their dates. """
|
|
|
|
if not (a_id and b_id):
|
|
|
|
return 0
|
|
|
|
a = self.database.get_place_from_handle(a_id)
|
|
|
|
b = self.database.get_place_from_handle(b_id)
|
|
|
|
return cmp(a.title,b.title)
|