[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndexNG - BaseConverter.py:1.1.2.2
Andreas Jung
andreas@digicool.com
Sat, 2 Mar 2002 12:33:01 -0500
Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/TextIndexNG
In directory cvs.zope.org:/tmp/cvs-serv14433
Modified Files:
Tag: ajung-textindexng-branch
BaseConverter.py
Log Message:
added support for converer dependency
=== Zope/lib/python/Products/PluginIndexes/TextIndexNG/BaseConverter.py 1.1.2.1 => 1.1.2.2 ===
def getDescription(self): return self.content_description
def getType(self): return self.content_type
+ def getDependency(self): return getattr(self,'depends_on','')
def __call__(self, s): return self.convert(s)