If we want to use Gramps from the code directory, src should be called gramps to allow import svn: r20466
		
			
				
	
	
		
			169 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			169 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
#
 | 
						|
# Gramps - a GTK+/GNOME based genealogy program
 | 
						|
#
 | 
						|
# Copyright (C) 2004-2006  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
 | 
						|
#
 | 
						|
 | 
						|
# $Id$
 | 
						|
 | 
						|
"""
 | 
						|
Slovak-specific classes for parsing and displaying dates.
 | 
						|
"""
 | 
						|
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
#
 | 
						|
# Python modules
 | 
						|
#
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
import re
 | 
						|
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
#
 | 
						|
# GRAMPS modules
 | 
						|
#
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
from ..lib.date import Date
 | 
						|
from _dateparser import DateParser
 | 
						|
from _datedisplay import DateDisplay
 | 
						|
from _datehandler import register_datehandler
 | 
						|
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
#
 | 
						|
# Slovak parser
 | 
						|
#
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
class DateParserSK(DateParser):
 | 
						|
 | 
						|
    modifier_to_int = {
 | 
						|
        u'pred'   : Date.MOD_BEFORE, 
 | 
						|
        u'do'     : Date.MOD_BEFORE, 
 | 
						|
        u'po'     : Date.MOD_AFTER, 
 | 
						|
        u'asi'    : Date.MOD_ABOUT, 
 | 
						|
        u'okolo'  : Date.MOD_ABOUT, 
 | 
						|
        u'pribl.' : Date.MOD_ABOUT, 
 | 
						|
        }
 | 
						|
 | 
						|
    calendar_to_int = {
 | 
						|
        u'gregoriánsky'  : Date.CAL_GREGORIAN, 
 | 
						|
        u'g'             : Date.CAL_GREGORIAN, 
 | 
						|
        u'juliánský'     : Date.CAL_JULIAN, 
 | 
						|
        u'j'             : Date.CAL_JULIAN, 
 | 
						|
        u'hebrejský'     : Date.CAL_HEBREW, 
 | 
						|
        u'h'             : Date.CAL_HEBREW, 
 | 
						|
        u'islamský'      : Date.CAL_ISLAMIC, 
 | 
						|
        u'i'             : Date.CAL_ISLAMIC, 
 | 
						|
        u'republikánsky' : Date.CAL_FRENCH, 
 | 
						|
        u'r'             : Date.CAL_FRENCH, 
 | 
						|
        u'perzský'       : Date.CAL_PERSIAN, 
 | 
						|
        u'p'             : Date.CAL_PERSIAN, 
 | 
						|
        u'swedish'      : Date.CAL_SWEDISH, 
 | 
						|
        u's'            : Date.CAL_SWEDISH, 
 | 
						|
        }
 | 
						|
 | 
						|
    quality_to_int = {
 | 
						|
        u'odhadovaný' : Date.QUAL_ESTIMATED, 
 | 
						|
        u'odh.'       : Date.QUAL_ESTIMATED, 
 | 
						|
        u'vypočítaný' : Date.QUAL_CALCULATED, 
 | 
						|
        u'vyp.'       : Date.QUAL_CALCULATED, 
 | 
						|
        }
 | 
						|
 | 
						|
    def init_strings(self):
 | 
						|
        DateParser.init_strings(self)
 | 
						|
        _span_1 = [u'od']
 | 
						|
        _span_2 = [u'do']
 | 
						|
        _range_1 = [u'medzi']
 | 
						|
        _range_2 = [u'a']
 | 
						|
        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)
 | 
						|
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
#
 | 
						|
# Slovak display
 | 
						|
#
 | 
						|
#-------------------------------------------------------------------------
 | 
						|
class DateDisplaySK(DateDisplay):
 | 
						|
    """
 | 
						|
    Slovak language date display class. 
 | 
						|
    """
 | 
						|
    long_months = ( u"", u"január", u"február", u"marec", u"apríl", u"máj", 
 | 
						|
                    u"jún", u"júl", u"august", u"september", u"október", 
 | 
						|
                    u"november", u"december" )
 | 
						|
    
 | 
						|
    short_months = ( u"", u"jan", u"feb", u"mar", u"apr", u"máj", u"jún", 
 | 
						|
                     u"júl", u"aug", u"sep", u"okt", u"nov", u"dec" )
 | 
						|
    
 | 
						|
    calendar = (
 | 
						|
        "", u"juliánský", u"hebrejský", 
 | 
						|
        u"republikánsky", u"perzský", u"islamský", 
 | 
						|
        u"swedish" 
 | 
						|
        )
 | 
						|
 | 
						|
    _mod_str = ("", u"pred ", u"po ", u"okolo ", "", "", "")
 | 
						|
    
 | 
						|
    _qual_str = ("", "odh. ", "vyp. ")
 | 
						|
 | 
						|
    formats = (
 | 
						|
        "RRRR-MM-DD (ISO)", "numerický", "Mesiac Deň, Rok", 
 | 
						|
        "MES Deň, Rok", "Deň, Mesiac, Rok", "Deň MES Rok"
 | 
						|
        )
 | 
						|
 | 
						|
    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'od', d1, 
 | 
						|
                                        u'do', 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'medzi', 
 | 
						|
                                        d1, u'a', 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(('sk_SK', 'sk', 'SK', 'Slovak'), DateParserSK, DateDisplaySK)
 |