smartbanner.py
2008-02-28 00:17...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""SmartBanner class for the Zope 3 based smartbanner package
$Id: smartbanner.py 49707 2007-12-29 23:27:21Z cray $
"""
__author__ = "Yegor Shershnev, 2007"
__license__ = "GPL"
__version__ = "$Revision: 49707 $"
from zope.interface import Interface
from zope.interface import implements,implementedBy
#from installtool.installscript.interfaces import IInstallScript
from zope.app.file.image import Image
from zope.app.container.contained import Contained
from interfaces import ISmartBanner
class SmartBanner(Image, Contained) :
implements(ISmartBanner)
url = u""
alt = u""
border = False
code = u""
begin_time = None
end_time = None



