interfaces.py
2008-01-11 19:21...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Interfaces for the Zope 3 based product package
$Id: interfaces.py 13429 2007-11-30 23:49:15Z cray $
"""
__author__ = ""
__license__ = "GPL"
__version__ = "$Revision: 13429 $"
from zope.interface import Interface
from zope.schema import TextLine, Tuple, URI, Object
from zope.app.container.interfaces import IContained
class IUrlText(Interface):
url = URI(title=u'URI')
title = TextLine(title=u'Title')
class IBookmarkNote(Interface):
mainurltext = Object(
title=u'Main URL',
schema=IUrlText)
urltext = Tuple(
title=u'urltext',
value_type=Object(
title=u'Main URL',
schema=IUrlText))



