> On Mon, 2005-11-07 at 18:24 -0600, alan runyan wrote:
> > Look at Zope upgrade documentation. If you upgrade before zope 2.7
> > and 2.8 you need to run manage_convertIndexes on each of
> the catalogs
>
> Ok. I ran
>
> .../portal_catalog/manage_convertIndexes
> .../uid_catalog/manage_convertIndexes
> .../reference_catalog/manage_convertIndexes
>
> All the errors related to the catalogs disappeared, but
> others remains.
Great! I wonder if this is in the documentation, if not it should be.
> * Module DocumentTemplate.ustr, line 44, in ustr
> TypeError: unbound method __str__() must be called with Image
> instance as first argument (got nothing instead) (Also, an
> error occurred while attempting to render the standard error message.)
>
> Apart from the __str__() error, everything is pretty much the
> same as it was before. BTW, when I launch zope in foreground
> I get the following errors on the CMFBoard and TALGenerator.
CMFBoard is not in the core of Plone. Please talk to the maintainer of
CMFBoard.
Or fix it yourself and submit patches to cmfboard's maintainer.
I can only tell you that binding methods from other class'es into another
class
Needs to look like:
from bar import Bar
Class Foo:
__str__ = Bar.__str__.im_func
That is the way of doing things now. Previously it was
from bar import Bar
Class Foo:
__str__ = Bar.__str__
That worked in Zope 2.7.x by accident. Zope 2.8.x it is more explicit.
Your other errors are TAL errors talking about semicolons. Should be
Easy to fix. Sorry but all your problems seem to stem from 3rd party
packages.
Alan runyan
_______________________________________________
Setup mailing list
[email protected]
http://lists.plone.org/mailman/listinfo/setup