ztfy/utils/timezone/utility.py
changeset 37 393fad193b6b
child 62 c7442401b446
equal deleted inserted replaced
36:14084f98ac50 37:393fad193b6b
       
     1 ### -*- coding: utf-8 -*- ####################################################
       
     2 ##############################################################################
       
     3 #
       
     4 # Copyright (c) 2008-2010 Thierry Florac <tflorac AT ulthar.net>
       
     5 # All Rights Reserved.
       
     6 #
       
     7 # This software is subject to the provisions of the Zope Public License,
       
     8 # Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
       
     9 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
       
    10 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       
    11 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
       
    12 # FOR A PARTICULAR PURPOSE.
       
    13 #
       
    14 ##############################################################################
       
    15 
       
    16 __docformat__ = "restructuredtext"
       
    17 
       
    18 # import standard packages
       
    19 from persistent import Persistent
       
    20 
       
    21 # import Zope3 interfaces
       
    22 
       
    23 # import local interfaces
       
    24 from interfaces import IServerTimezone
       
    25 
       
    26 # import Zope3 packages
       
    27 from zope.interface import implements
       
    28 from zope.schema.fieldproperty import FieldProperty
       
    29 
       
    30 # import local packages
       
    31 
       
    32 from ztfy.utils import _
       
    33 
       
    34 
       
    35 class ServerTimezoneUtility(Persistent):
       
    36 
       
    37     implements(IServerTimezone)
       
    38 
       
    39     timezone = FieldProperty(IServerTimezone['timezone'])