252 lines
9.8 KiB
Python
252 lines
9.8 KiB
Python
# -*- coding: utf-8 -*-
|
||
#
|
||
# Gramps - a GTK+/GNOME based genealogy program
|
||
#
|
||
# Copyright (C) 2004-2006 Donald N. Allingham
|
||
# Copyright (C) 2013 Zissis Papadopoulos <zissis@mail.com>
|
||
#
|
||
# 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
|
||
#
|
||
|
||
# $Id$
|
||
|
||
"""
|
||
Greek-specific classes for parsing and displaying dates.
|
||
"""
|
||
|
||
#-------------------------------------------------------------------------
|
||
#
|
||
# Python modules
|
||
#
|
||
#-------------------------------------------------------------------------
|
||
import re
|
||
|
||
#-------------------------------------------------------------------------
|
||
#
|
||
# GRAMPS modules
|
||
#
|
||
#-------------------------------------------------------------------------
|
||
from gen.lib import Date
|
||
from _DateParser import DateParser
|
||
from _DateDisplay import DateDisplay
|
||
from _DateHandler import register_datehandler
|
||
|
||
#-------------------------------------------------------------------------
|
||
#
|
||
# Greek parser class
|
||
#
|
||
#-------------------------------------------------------------------------
|
||
class DateParserEL(DateParser):
|
||
"""
|
||
Convert a text string into a Date object. If the date cannot be
|
||
converted, the text string is assigned.
|
||
"""
|
||
|
||
# modifiers before the date
|
||
modifier_to_int = {
|
||
u'προ του' : Date.MOD_BEFORE,
|
||
u'πριν το' : Date.MOD_BEFORE,
|
||
u'πριν από τις' : Date.MOD_BEFORE,
|
||
u'πριν από την' : Date.MOD_BEFORE,
|
||
u'πριν από το' : Date.MOD_BEFORE,
|
||
u'πριν από τον' : Date.MOD_BEFORE,
|
||
u'προ' : Date.MOD_BEFORE,
|
||
u'πρ.' : Date.MOD_BEFORE,
|
||
u'μετά το' : Date.MOD_AFTER,
|
||
u'μετά από τις' : Date.MOD_AFTER,
|
||
u'μετά από την' : Date.MOD_AFTER,
|
||
u'μετά από το' : Date.MOD_AFTER,
|
||
u'μετά από τον' : Date.MOD_AFTER,
|
||
u'μετά' : Date.MOD_AFTER,
|
||
u'μετ.' : Date.MOD_AFTER,
|
||
u'γύρω στο' : Date.MOD_ABOUT,
|
||
u'γύρω στον' : Date.MOD_ABOUT,
|
||
u'γύρω στις' : Date.MOD_ABOUT,
|
||
u'περίπου το' : Date.MOD_ABOUT,
|
||
u'περ.' : Date.MOD_ABOUT,
|
||
u'γυρ.' : Date.MOD_ABOUT,
|
||
u'~' : Date.MOD_ABOUT,
|
||
}
|
||
# in some languages some of above listed modifiers are after the date,
|
||
# in that case the subclass should put them into this dictionary instead
|
||
modifier_after_to_int = {}
|
||
|
||
bce = [u"π.Χ.", u"π.Κ.Χ.", u"π.Κ.Ε.", u"π.Χ" ]
|
||
|
||
calendar_to_int = {
|
||
u'γρηγοριανό' : Date.CAL_GREGORIAN,
|
||
u'γ' : Date.CAL_GREGORIAN,
|
||
u'ιουλιανό' : Date.CAL_JULIAN,
|
||
u'ι' : Date.CAL_JULIAN,
|
||
u'εβραϊκό' : Date.CAL_HEBREW,
|
||
u'ε' : Date.CAL_HEBREW,
|
||
u'ισλαμικό' : Date.CAL_ISLAMIC,
|
||
u'ισλ' : Date.CAL_ISLAMIC,
|
||
u'γαλλικό' : Date.CAL_FRENCH,
|
||
u'γαλλικής δημοκρατίας': Date.CAL_FRENCH,
|
||
u'γ' : Date.CAL_FRENCH,
|
||
u'περσικό' : Date.CAL_PERSIAN,
|
||
u'π' : Date.CAL_PERSIAN,
|
||
u'σουηδικό' : Date.CAL_SWEDISH,
|
||
u'σ' : Date.CAL_SWEDISH,
|
||
}
|
||
|
||
quality_to_int = {
|
||
u'κατʼ εκτίμηση' : Date.QUAL_ESTIMATED,
|
||
u'εκτιμώμενη' : Date.QUAL_ESTIMATED,
|
||
u'εκτ.' : Date.QUAL_ESTIMATED,
|
||
u'εκτ' : Date.QUAL_ESTIMATED,
|
||
u'υπολογ' : Date.QUAL_CALCULATED,
|
||
u'υπολογ.' : Date.QUAL_CALCULATED,
|
||
u'υπολογισμένη' : Date.QUAL_CALCULATED,
|
||
u'με υπολογισμό' : Date.QUAL_CALCULATED,
|
||
}
|
||
|
||
def init_strings(self):
|
||
"""
|
||
This method compiles regular expression strings for matching dates.
|
||
"""
|
||
DateParser.init_strings(self)
|
||
_span_1 = [u'από']
|
||
_span_2 = [u'έως']
|
||
_range_1 = [u'μετ', u'μετ\.', u'μεταξύ']
|
||
_range_2 = [u'και']
|
||
self._span = re.compile("(%s)\s+(?P<start>.+)\s+(%s)\s+(?P<stop>.+)" %
|
||
('|'.join(_span_1), '|'.join(_span_2)),
|
||
re.IGNORECASE)
|
||
self._range = re.compile("(%s)\s+(?P<start>.+)\s+(%s)\s+(?P<stop>.+)" %
|
||
('|'.join(_range_1), '|'.join(_range_2)),
|
||
re.IGNORECASE)
|
||
|
||
#-------------------------------------------------------------------------
|
||
#
|
||
# Greek display
|
||
#
|
||
#-------------------------------------------------------------------------
|
||
class DateDisplayEL(DateDisplay):
|
||
"""
|
||
Greek language date display class.
|
||
"""
|
||
# this is used to display the 12 gregorian months
|
||
long_months = ( u"", u"Ιανουάριος", u"Φεβρουάριος", u"Μάρτιος",
|
||
u"Απρίλιος", u"Μάιος", u"Ιούνιος",
|
||
u"Ιούλιος", u"Αύγουστος", u"Σεπτέμβριος",
|
||
u"Οκτώβριος", u"Νοέμβριος", u"Δεκέμβριος" )
|
||
|
||
short_months = ( u"", u"Ιαν", u"Φεβ", u"Μαρ", u"Απρ", u"Μάι", u"Ιουν",
|
||
u"Ιουλ", u"Αύγ", u"Σεπ", u"Οκτ", u"Νοε", u"Δεκ" )
|
||
|
||
_mod_str = (u"", u"προ του ", u"μετά το ", u"γύρω στο ", u"", u"", u"")
|
||
|
||
_qual_str = (u"", u"εκτιμώμενη ", u"υπολογισμένη ")
|
||
|
||
_bce_str = u"%s π.Χ."
|
||
|
||
formats = (
|
||
"ΕΕΕΕ-ΜΜ-ΗΗ (ISO)", "ΗΗ-ΜΜ-ΕΕΕΕ", "ΗΗ/ΜΜ/ΕΕΕΕ",
|
||
"ΗΗ Μήνας ΕΕΕΕ", "ΗΗ Μήν ΕΕΕΕ"
|
||
)
|
||
# this definition must agree with its "_display_gregorian" method
|
||
|
||
def _display_gregorian(self, date_val):
|
||
"""
|
||
display gregorian calendar date in different format
|
||
"""
|
||
# this must agree with its locale-specific "formats" definition
|
||
year = self._slash_year(date_val[2], date_val[3])
|
||
if self.format == 0:
|
||
return self.display_iso(date_val)
|
||
elif self.format == 1:
|
||
# day-month_number-year
|
||
if date_val[0] == 0:
|
||
if date_val[1] == 0:
|
||
value = year
|
||
else:
|
||
value = "%s-%s" % (date_val[1], year)
|
||
else:
|
||
value = "%d-%s-%s" % (date_val[0], date_val[1], year)
|
||
elif self.format == 2:
|
||
# day/month_number/year
|
||
if date_val[0] == 0:
|
||
if date_val[1] == 0:
|
||
value = year
|
||
else:
|
||
value = "%s/%s" % (date_val[1], year)
|
||
else:
|
||
value = "%d/%s/%s" % (date_val[0], date_val[1], year)
|
||
elif self.format == 3:
|
||
# day month_name year
|
||
if date_val[0] == 0:
|
||
if date_val[1] == 0:
|
||
value = year
|
||
else:
|
||
value = "%s %s" % (self.long_months[date_val[1]], year)
|
||
else:
|
||
value = "%d %s %s" % (date_val[0],
|
||
self.long_months[date_val[1]], year)
|
||
else:
|
||
# day month_abbreviation year
|
||
if date_val[0] == 0:
|
||
if date_val[1] == 0:
|
||
value = year
|
||
else:
|
||
value = "%s %s" % (self.short_months[date_val[1]], year)
|
||
else:
|
||
value = "%d %s %s" % (date_val[0],
|
||
self.short_months[date_val[1]], year)
|
||
if date_val[2] < 0:
|
||
return self._bce_str % value
|
||
else:
|
||
return value
|
||
|
||
def display(self, date):
|
||
"""
|
||
Return a text string representing the date.
|
||
"""
|
||
mod = date.get_modifier()
|
||
cal = date.get_calendar()
|
||
qual = date.get_quality()
|
||
start = date.get_start_date()
|
||
newyear = date.get_new_year()
|
||
|
||
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())
|
||
scal = self.format_extras(cal, newyear)
|
||
return "%s%s %s %s %s%s" % (qual_str, u'από', d1, u'έως', d2, scal)
|
||
elif mod == Date.MOD_RANGE:
|
||
d1 = self.display_cal[cal](start)
|
||
d2 = self.display_cal[cal](date.get_stop_date())
|
||
scal = self.format_extras(cal, newyear)
|
||
return "%s%s %s %s %s%s" % (qual_str, u'μεταξύ', d1, u'και', d2, scal)
|
||
else:
|
||
text = self.display_cal[date.get_calendar()](start)
|
||
scal = self.format_extras(cal, newyear)
|
||
return "%s%s%s%s" % (qual_str, self._mod_str[mod], text, scal)
|
||
|
||
#-------------------------------------------------------------------------
|
||
#
|
||
# Register classes
|
||
#
|
||
#-------------------------------------------------------------------------
|
||
register_datehandler(('el_GR', 'el_CY', 'el', 'Greek', 'greek'),
|
||
DateParserEL, DateDisplayEL)
|