2001-05-13 07:26:57 +05:30
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
|
|
|
# Copyright (C) 2000 Donald N. Allingham
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
from RelLib import *
|
|
|
|
from Date import *
|
2001-08-03 04:35:51 +05:30
|
|
|
import string
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-08-06 08:30:01 +05:30
|
|
|
def build_sort_name(n):
|
2001-09-09 01:42:38 +05:30
|
|
|
return "%-25s%-30s%s" % \
|
|
|
|
(string.upper(n.Surname),string.upper(n.FirstName),string.upper(n.Suffix))
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-08-06 08:30:01 +05:30
|
|
|
def build_sort_birth(n):
|
|
|
|
y = n.start.year
|
2001-07-06 05:34:20 +05:30
|
|
|
if y == -1:
|
|
|
|
y = 9999
|
2001-08-06 08:30:01 +05:30
|
|
|
m = n.start.month
|
2001-07-06 05:34:20 +05:30
|
|
|
if m == -1:
|
|
|
|
m = 99
|
2001-08-06 08:30:01 +05:30
|
|
|
d = n.start.day
|
2001-07-06 05:34:20 +05:30
|
|
|
if d == -1:
|
|
|
|
d = 99
|
2001-08-06 08:30:01 +05:30
|
|
|
return "%04d%2d%2d" % (y,m,d)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-08-06 08:30:01 +05:30
|
|
|
def build_sort_death(n):
|
|
|
|
y = n.start.year
|
2001-07-06 05:34:20 +05:30
|
|
|
if y == -1:
|
|
|
|
y = 9999
|
2001-08-06 08:30:01 +05:30
|
|
|
m = n.start.month
|
2001-07-06 05:34:20 +05:30
|
|
|
if m == -1:
|
|
|
|
m = 99
|
2001-08-06 08:30:01 +05:30
|
|
|
d = n.start.day
|
2001-07-06 05:34:20 +05:30
|
|
|
if d == -1:
|
|
|
|
d = 99
|
2001-08-06 08:30:01 +05:30
|
|
|
return "%04d%2d%2d" % (y,m,d)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def fast_name_sort(list):
|
|
|
|
nlist = map(build_sort_name,list)
|
|
|
|
nlist.sort()
|
|
|
|
return map(lambda(key,x): x, nlist)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def reverse_name_sort(list):
|
|
|
|
nlist = map(build_sort_name,list)
|
|
|
|
nlist.sort()
|
|
|
|
nlist.reverse()
|
|
|
|
return map(lambda(key,x): x, nlist)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def fast_birth_sort(list):
|
|
|
|
nlist = map(build_sort_birth,list)
|
|
|
|
nlist.sort()
|
|
|
|
return map(lambda(key,x): x, nlist)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def reverse_birth_sort(list):
|
|
|
|
nlist = map(build_sort_birth,list)
|
|
|
|
nlist.sort()
|
|
|
|
nlist.reverse()
|
|
|
|
return map(lambda(key,x): x, nlist)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def fast_death_sort(list):
|
|
|
|
nlist = map(build_sort_death,list)
|
|
|
|
nlist.sort()
|
|
|
|
return map(lambda(key,x): x, nlist)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def reverse_death_sort(list):
|
|
|
|
nlist = map(build_sort_death,list)
|
|
|
|
nlist.sort()
|
|
|
|
nlist.reverse()
|
|
|
|
return map(lambda(key,x): x, nlist)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def by_last_name(first, second) :
|
2001-05-13 07:26:57 +05:30
|
|
|
|
2001-07-06 05:34:20 +05:30
|
|
|
name1 = first.getPrimaryName()
|
|
|
|
name2 = second.getPrimaryName()
|
|
|
|
|
2001-08-17 04:54:53 +05:30
|
|
|
fsn = string.upper(name1.getSurname())
|
2001-08-19 23:01:52 +05:30
|
|
|
ssn = string.upper(name2.getSurname())
|
2001-08-17 04:54:53 +05:30
|
|
|
|
2001-09-19 05:13:53 +05:30
|
|
|
if fsn == ssn :
|
2001-08-17 04:54:53 +05:30
|
|
|
ffn = string.upper(name1.getFirstName())
|
|
|
|
sfn = string.upper(name2.getFirstName())
|
|
|
|
if ffn == sfn :
|
|
|
|
return cmp(string.upper(name1.getSuffix()), string.upper(name2.getSuffix()))
|
2001-07-06 05:34:20 +05:30
|
|
|
else :
|
2001-08-17 04:54:53 +05:30
|
|
|
return cmp(ffn, sfn)
|
2001-07-06 05:34:20 +05:30
|
|
|
else :
|
2001-08-17 04:54:53 +05:30
|
|
|
return cmp(fsn, ssn)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def by_last_name_backwards(first, second) :
|
|
|
|
return by_last_name(second,first)
|
2001-05-13 07:26:57 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2001-07-06 05:34:20 +05:30
|
|
|
def by_birthdate(first, second) :
|
|
|
|
|
|
|
|
date1 = first.getBirth().getDateObj()
|
|
|
|
date2 = second.getBirth().getDateObj()
|
|
|
|
val = compare_dates(date1,date2)
|
|
|
|
if val == 0:
|
|
|
|
return by_last_name(first,second)
|
|
|
|
return val
|
|
|
|
|
2001-05-13 07:26:57 +05:30
|
|
|
|