############################################################################## # # Copyright (c) 2003 Zope Corporation and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the Zope Public License, # Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution. # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS # FOR A PARTICULAR PURPOSE. # ############################################################################## """Plain Text Renderer Classes $Id: __init__.py 67630 2006-04-27 00:54:03Z jim $ """ from zope.component.interfaces import IFactory from zope.interface import implements, directlyProvides, Declaration from zope.publisher.browser import BrowserView from interfaces import ISource, IHTMLRenderer class Source(unicode): __provides__ = None class SourceFactory(object): """Creates an ISource object.""" implements(IFactory) def __init__(self, iface, title='', description=''): self._iface = iface self.title = title self.description = description def getInterfaces(self): return Declaration(self._iface).flattened() def __call__(self, ustr): source = Source(ustr) directlyProvides(source, self._iface) return source