2004-11-16 09:14:23 +05:30
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Gramps - a GTK+/GNOME based genealogy program
|
|
|
|
#
|
2006-02-04 03:33:53 +05:30
|
|
|
# Copyright (C) 2004-2006 Donald N. Allingham
|
2004-11-16 09:14:23 +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.
|
|
|
|
#
|
2007-06-27 10:20:33 +05:30
|
|
|
# This program is distributed in the hope that it will be useful,
|
2004-11-16 09:14:23 +05:30
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
# $Id$
|
|
|
|
|
|
|
|
"""
|
|
|
|
French-specific classes for parsing and displaying dates.
|
|
|
|
"""
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Python modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
import re
|
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# GRAMPS modules
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2007-10-08 22:11:39 +05:30
|
|
|
from gen.lib import Date
|
2006-03-11 10:28:58 +05:30
|
|
|
from _DateParser import DateParser
|
|
|
|
from _DateDisplay import DateDisplay
|
|
|
|
from _DateHandler import register_datehandler
|
2004-11-16 09:14:23 +05:30
|
|
|
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# French parser
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class DateParserFR(DateParser):
|
|
|
|
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int = DateParser.month_to_int
|
2006-09-13 23:42:53 +05:30
|
|
|
# Add common value
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"bluviose"] = 1
|
|
|
|
month_to_int[u"vendose"] = 2
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"7bre"] = 9
|
|
|
|
month_to_int[u"8bre"] = 10
|
|
|
|
month_to_int[u"9bre"] = 11
|
|
|
|
month_to_int[u"10bre"] = 12
|
|
|
|
month_to_int[u"xbre"] = 12
|
|
|
|
# Add common latin
|
|
|
|
month_to_int[u"januaris"] = 1
|
|
|
|
month_to_int[u"januarii"] = 1
|
|
|
|
month_to_int[u"januarius"] = 1
|
|
|
|
month_to_int[u"februaris"] = 2
|
|
|
|
month_to_int[u"februarii"] = 2
|
|
|
|
month_to_int[u"februarius"] = 2
|
|
|
|
month_to_int[u"martii"] = 3
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"martius"] = 3
|
|
|
|
month_to_int[u"aprilis"] = 4
|
|
|
|
month_to_int[u"maius"] = 5
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"maii"] = 5
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"junius"] = 6
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"junii"] = 6
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"julius"] = 7
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"julii"] = 7
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"augustus"] = 8
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"augusti"] = 8
|
|
|
|
month_to_int[u"septembris"] = 9
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"7bris"] = 9
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"september"] = 9
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"october"] = 10
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"octobris"] = 10
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"8bris"] = 10
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"novembris"] = 11
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"9bris"] = 11
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"november"] = 11
|
|
|
|
month_to_int[u"decembris"] = 12
|
2006-03-01 01:24:35 +05:30
|
|
|
month_to_int[u"10bris"] = 12
|
|
|
|
month_to_int[u"xbris"] = 12
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"december"] = 12
|
|
|
|
#local and historical variants
|
|
|
|
# Add common on east france
|
|
|
|
month_to_int[u"janer"] = 1
|
|
|
|
month_to_int[u"jenner"] = 1
|
|
|
|
month_to_int[u"hartmonat"] = 1
|
|
|
|
month_to_int[u"hartung"] = 1
|
|
|
|
month_to_int[u"eismond"] = 1
|
|
|
|
month_to_int[u"hornung"] = 2
|
|
|
|
month_to_int[u"wintermonat"] = 2
|
|
|
|
month_to_int[u"taumond"] = 2
|
|
|
|
month_to_int[u"narrenmond"] = 2
|
2007-09-07 13:23:28 +05:30
|
|
|
month_to_int[u"lenzing"] = 3
|
|
|
|
month_to_int[u"ostermond"] = 4
|
|
|
|
month_to_int[u"wonnemond"] = 5
|
2006-09-13 23:42:53 +05:30
|
|
|
month_to_int[u"wiesenmonat"] = 5
|
2007-09-07 13:23:28 +05:30
|
|
|
month_to_int[u"brachet"] = 6
|
|
|
|
month_to_int[u"heuet"] = 7
|
|
|
|
month_to_int[u"ernting"] = 8
|
|
|
|
month_to_int[u"scheiding"] = 9
|
|
|
|
month_to_int[u"gilbhard"] = 10
|
|
|
|
month_to_int[u"nebelmonat"] = 11
|
|
|
|
month_to_int[u"nebelung"] = 11
|
|
|
|
month_to_int[u"julmond"] = 12
|
2006-03-01 01:24:35 +05:30
|
|
|
|
2004-11-16 09:14:23 +05:30
|
|
|
modifier_to_int = {
|
2007-06-27 10:20:33 +05:30
|
|
|
u'avant' : Date.MOD_BEFORE,
|
|
|
|
u'av.' : Date.MOD_BEFORE,
|
|
|
|
u'après' : Date.MOD_AFTER,
|
|
|
|
u'ap.' : Date.MOD_AFTER,
|
|
|
|
u'ap' : Date.MOD_AFTER,
|
|
|
|
u'env.' : Date.MOD_ABOUT,
|
|
|
|
u'env' : Date.MOD_ABOUT,
|
|
|
|
u'environ': Date.MOD_ABOUT,
|
|
|
|
u'circa' : Date.MOD_ABOUT,
|
|
|
|
u'c.' : Date.MOD_ABOUT,
|
|
|
|
u'ca' : Date.MOD_ABOUT,
|
|
|
|
u'ca.' : Date.MOD_ABOUT,
|
|
|
|
u'vers' : Date.MOD_ABOUT,
|
|
|
|
u'~' : Date.MOD_ABOUT,
|
2004-11-16 09:14:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
calendar_to_int = {
|
2007-06-27 10:20:33 +05:30
|
|
|
u'grégorien' : Date.CAL_GREGORIAN,
|
|
|
|
u'g' : Date.CAL_GREGORIAN,
|
|
|
|
u'julien' : Date.CAL_JULIAN,
|
|
|
|
u'j' : Date.CAL_JULIAN,
|
|
|
|
u'hébreu' : Date.CAL_HEBREW,
|
|
|
|
u'h' : Date.CAL_HEBREW,
|
|
|
|
u'islamique' : Date.CAL_ISLAMIC,
|
|
|
|
u'i' : Date.CAL_ISLAMIC,
|
|
|
|
u'révolutionnaire' : Date.CAL_FRENCH,
|
|
|
|
u'r' : Date.CAL_FRENCH,
|
|
|
|
u'perse' : Date.CAL_PERSIAN,
|
|
|
|
u'p' : Date.CAL_PERSIAN,
|
2004-11-16 09:14:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
quality_to_int = {
|
2007-06-27 10:20:33 +05:30
|
|
|
u'estimée' : Date.QUAL_ESTIMATED,
|
|
|
|
u'est.' : Date.QUAL_ESTIMATED,
|
|
|
|
u'est' : Date.QUAL_ESTIMATED,
|
|
|
|
u'calculée' : Date.QUAL_CALCULATED,
|
|
|
|
u'calc.' : Date.QUAL_CALCULATED,
|
|
|
|
u'calc' : Date.QUAL_CALCULATED,
|
|
|
|
u'comptée' : Date.QUAL_CALCULATED,
|
|
|
|
u'compt' : Date.QUAL_CALCULATED,
|
|
|
|
u'compt.' : Date.QUAL_CALCULATED,
|
2004-11-16 09:14:23 +05:30
|
|
|
}
|
2007-09-07 13:23:28 +05:30
|
|
|
|
|
|
|
bce = [u"avant le calendrier", u"avant notre ère",
|
|
|
|
u"avant JC", u"avant J.C"] + DateParser.bce
|
2004-11-16 09:14:23 +05:30
|
|
|
|
|
|
|
def init_strings(self):
|
|
|
|
DateParser.init_strings(self)
|
2006-05-02 02:41:26 +05:30
|
|
|
# This self._numeric is different from the base
|
2007-09-07 13:23:28 +05:30
|
|
|
# avoid bug gregorian / french calendar conversion (+/-10 days)
|
2006-05-02 02:41:26 +05:30
|
|
|
self._numeric = re.compile("((\d+)[/\. ])?\s*((\d+)[/\.])?\s*(\d+)\s*$")
|
2007-06-27 10:20:33 +05:30
|
|
|
self._span = re.compile(u"(de)\s+(?P<start>.+)\s+(à)\s+(?P<stop>.+)", re.IGNORECASE)
|
|
|
|
self._range = re.compile(u"(entre|ent\.|ent)\s+(?P<start>.+)\s+(et)\s+(?P<stop>.+)", re.IGNORECASE)
|
2008-01-06 01:40:26 +05:30
|
|
|
# This self._text are different from the base
|
2006-09-13 23:42:53 +05:30
|
|
|
# by adding ".?" after the first date and removing "\s*$" at the end
|
2008-01-06 01:40:26 +05:30
|
|
|
#gregorian and julian
|
2007-09-08 10:00:36 +05:30
|
|
|
self._text2 = re.compile('(\d+)?.?\s+?%s\s*((\d+)(/\d+)?)?' % self._mon_str,
|
2007-06-27 10:20:33 +05:30
|
|
|
re.IGNORECASE)
|
2008-01-06 01:40:26 +05:30
|
|
|
#hebrew
|
2007-09-08 10:00:36 +05:30
|
|
|
self._jtext2 = re.compile('(\d+)?.?\s+?%s\s*((\d+)(/\d+)?)?' % self._jmon_str,
|
2007-06-27 10:20:33 +05:30
|
|
|
re.IGNORECASE)
|
2008-01-06 01:40:26 +05:30
|
|
|
#french
|
2007-09-08 10:00:36 +05:30
|
|
|
self._ftext2 = re.compile('(\d+)?.?\s+?%s\s*((\d+)(/\d+)?)?' % self._fmon_str,
|
2007-06-27 10:20:33 +05:30
|
|
|
re.IGNORECASE)
|
2008-01-06 01:40:26 +05:30
|
|
|
#persian
|
2007-06-27 10:20:33 +05:30
|
|
|
self._ptext2 = re.compile('(\d+)?.?\s+?%s\s*((\d+)(/\d+)?)?' % self._pmon_str,
|
|
|
|
re.IGNORECASE)
|
2008-01-06 01:40:26 +05:30
|
|
|
#islamic
|
2007-06-27 10:20:33 +05:30
|
|
|
self._itext2 = re.compile('(\d+)?.?\s+?%s\s*((\d+)(/\d+)?)?' % self._imon_str,
|
|
|
|
re.IGNORECASE)
|
2007-09-08 10:00:36 +05:30
|
|
|
|
2004-11-16 09:14:23 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# French display
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
class DateDisplayFR(DateDisplay):
|
|
|
|
|
|
|
|
calendar = (
|
2007-06-27 10:20:33 +05:30
|
|
|
"", u" (Julien)", u" (Hébreu)",
|
2004-11-17 09:06:18 +05:30
|
|
|
u" (Révolutionnaire)", u" (Perse)", u" (Islamique)"
|
2004-11-16 09:14:23 +05:30
|
|
|
)
|
|
|
|
|
2007-06-27 10:20:33 +05:30
|
|
|
_mod_str = ("", u"avant ", u"après ", u"vers ", "", "", "")
|
2004-11-16 09:14:23 +05:30
|
|
|
|
2007-06-27 10:20:33 +05:30
|
|
|
_qual_str = ("", u"estimée ", u"calculée ", "")
|
2007-09-07 13:23:28 +05:30
|
|
|
|
|
|
|
_bce_str = u"%s avant le calendrier"
|
2005-01-19 10:43:09 +05:30
|
|
|
|
|
|
|
formats = (
|
2007-06-27 10:20:33 +05:30
|
|
|
"AAAA-MM-JJ (ISO)", "Numérique", "Mois Jour, Année",
|
2007-12-27 00:29:34 +05:30
|
|
|
"MOI Jour, Année", "Jour. Mois Année", "Jour. MOI Année"
|
2005-01-19 10:43:09 +05:30
|
|
|
)
|
|
|
|
|
2007-06-27 10:20:33 +05:30
|
|
|
def _display_gregorian(self, date_val):
|
|
|
|
year = self._slash_year(date_val[2], date_val[3])
|
2006-03-01 01:24:35 +05:30
|
|
|
if self.format == 0:
|
2006-05-02 02:41:26 +05:30
|
|
|
return self.display_iso(date_val)
|
2006-03-01 01:24:35 +05:30
|
|
|
elif self.format == 1:
|
2007-09-08 03:37:50 +05:30
|
|
|
if date_val[2] < 0 or date_val[3]:
|
|
|
|
return self.display_iso(date_val)
|
2006-03-01 01:24:35 +05:30
|
|
|
else:
|
2008-06-16 20:31:46 +05:30
|
|
|
if date_val[0] == date_val[1] == 0:
|
2006-05-02 02:41:26 +05:30
|
|
|
value = str(date_val[2])
|
|
|
|
else:
|
2007-06-27 10:20:33 +05:30
|
|
|
value = self._tformat.replace('%m', str(date_val[1]))
|
|
|
|
value = value.replace('%d', str(date_val[0]))
|
2008-01-06 01:40:26 +05:30
|
|
|
# base_display :
|
|
|
|
# value = value.replace('%Y', str(abs(date_val[2])))
|
2007-06-27 10:20:33 +05:30
|
|
|
# value = value.replace('-', '/')
|
2007-09-08 03:37:50 +05:30
|
|
|
value = value.replace('%Y', str(date_val[2]))
|
2006-03-01 01:24:35 +05:30
|
|
|
elif self.format == 2:
|
|
|
|
# Month Day, Year
|
|
|
|
if date_val[0] == 0:
|
|
|
|
if date_val[1] == 0:
|
|
|
|
value = year
|
|
|
|
else:
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%s %s" % (self._months[date_val[1]], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
else:
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%s %d, %s" % (self._months[date_val[1]], date_val[0], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
elif self.format == 3:
|
|
|
|
# MON Day, Year
|
|
|
|
if date_val[0] == 0:
|
|
|
|
if date_val[1] == 0:
|
|
|
|
value = year
|
|
|
|
else:
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%s %s" % (self.MONS[date_val[1]], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
else:
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%s %d, %s" % (self.MONS[date_val[1]], date_val[0], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
elif self.format == 4:
|
|
|
|
# Day Month Year
|
|
|
|
if date_val[0] == 0:
|
|
|
|
if date_val[1] == 0:
|
|
|
|
value = year
|
|
|
|
else:
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%s %s" % (self._months[date_val[1]], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
else:
|
2008-01-06 01:40:26 +05:30
|
|
|
# base_display :
|
|
|
|
# value = "%d %s %s" % (date_val[0], self._months[date_val[1]], year)
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%d. %s %s" % (date_val[0], self._months[date_val[1]], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
else:
|
|
|
|
# Day MON Year
|
|
|
|
if date_val[0] == 0:
|
|
|
|
if date_val[1] == 0:
|
|
|
|
value = year
|
|
|
|
else:
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%s %s" % (self.MONS[date_val[1]], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
else:
|
2008-01-06 01:40:26 +05:30
|
|
|
# base_display :
|
|
|
|
# value = "%d %s %s" % (date_val[0], self.MONS[date_val[1]], year)
|
2007-06-27 10:20:33 +05:30
|
|
|
value = "%d. %s %s" % (date_val[0], self.MONS[date_val[1]], year)
|
2006-05-02 02:41:26 +05:30
|
|
|
if date_val[2] < 0:
|
|
|
|
return self._bce_str % value
|
|
|
|
else:
|
|
|
|
return value
|
2007-09-08 03:37:50 +05:30
|
|
|
|
|
|
|
def _display_french(self, date_val):
|
|
|
|
year = date_val[2]
|
|
|
|
if date_val[0] == 0:
|
|
|
|
if date_val[1] == 0:
|
2008-02-07 21:01:27 +05:30
|
|
|
return year
|
2007-09-08 03:37:50 +05:30
|
|
|
else:
|
2008-02-09 20:28:42 +05:30
|
|
|
return u"%s %d" % (self.french[date_val[1]], year)
|
2007-09-08 03:37:50 +05:30
|
|
|
# convertion mistake before 22.9.1792
|
|
|
|
elif date_val[2] == 0 and date_val[1] == 13:
|
|
|
|
# from 17.9.1792 to 21.9.1792 : trap for Extra months, we cannot date back
|
|
|
|
return self._bce_str % year
|
|
|
|
# on 1792 before 22.9.1792, no negative years
|
|
|
|
elif date_val[2] < 0:
|
|
|
|
return self._bce_str % year
|
|
|
|
# valid dates on 1792
|
|
|
|
else:
|
|
|
|
return u"%s %s %d" % (date_val[0], self.french[date_val[1]], year)
|
2006-03-01 01:24:35 +05:30
|
|
|
|
2007-06-27 10:20:33 +05:30
|
|
|
def display(self, date):
|
2004-11-16 09:14:23 +05:30
|
|
|
"""
|
2008-02-24 19:25:55 +05:30
|
|
|
Return a text string representing the date.
|
2005-01-19 10:45:30 +05:30
|
|
|
"""
|
2004-11-16 09:14:23 +05:30
|
|
|
mod = date.get_modifier()
|
|
|
|
cal = date.get_calendar()
|
|
|
|
qual = date.get_quality()
|
|
|
|
start = date.get_start_date()
|
|
|
|
|
|
|
|
qual_str = self._qual_str[qual]
|
|
|
|
|
|
|
|
if mod == Date.MOD_TEXTONLY:
|
|
|
|
return date.get_text()
|
|
|
|
elif start == Date.EMPTY:
|
|
|
|
return ""
|
|
|
|
elif mod == Date.MOD_SPAN:
|
|
|
|
d1 = self.display_cal[cal](start)
|
|
|
|
d2 = self.display_cal[cal](date.get_stop_date())
|
2007-06-27 10:20:33 +05:30
|
|
|
return "%s%s %s %s %s%s" % (qual_str, u'de', d1, u'à', d2, self.calendar[cal])
|
2004-11-16 09:14:23 +05:30
|
|
|
elif mod == Date.MOD_RANGE:
|
|
|
|
d1 = self.display_cal[cal](start)
|
|
|
|
d2 = self.display_cal[cal](date.get_stop_date())
|
2007-06-27 10:20:33 +05:30
|
|
|
return "%s%s %s %s %s%s" % (qual_str, u'entre', d1, u'et', d2, self.calendar[cal])
|
2004-11-16 09:14:23 +05:30
|
|
|
else:
|
|
|
|
text = self.display_cal[date.get_calendar()](start)
|
2007-06-27 10:20:33 +05:30
|
|
|
return "%s%s%s%s" % (qual_str, self._mod_str[mod], text, self.calendar[cal])
|
2007-09-08 03:37:50 +05:30
|
|
|
|
|
|
|
|
2004-11-16 09:14:23 +05:30
|
|
|
#-------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Register classes
|
|
|
|
#
|
|
|
|
#-------------------------------------------------------------------------
|
2006-05-02 02:41:26 +05:30
|
|
|
register_datehandler(
|
2008-11-13 14:33:05 +05:30
|
|
|
('fr_FR', 'fr', 'french', 'French', 'fr_CA', 'fr_BE', 'fr_CH'),
|
2007-06-27 10:20:33 +05:30
|
|
|
DateParserFR, DateDisplayFR)
|