urltext.py
2008-01-11 19:20...
### -*- coding: utf-8 -*- #############################################
#######################################################################
"""Product class for the Zope 3 based product package
$Id: urltext.py 13429 2007-11-30 23:49:15Z cray $
"""
__author__ = "Andrey Orlov"
__license__ = "GPL"
__version__ = "$Revision: 13429 $"
from zope.interface import implements
from interfaces import IUrlText
class UrlText(object) :
implements(IUrlText)
url = ""
text = ""



