FW: [Zope-PTK] problems publishing news...

Larry Prikockis Larry_Prikockis@ABI.org
Thu, 22 Mar 2001 08:56:12 -0500


Thanks to everyone for their quick and helpful responses... I've since
gotten everything up and running beuatifully and am even *more* impressed
with Zope and the CMF.
For the benefit of others having the same problem, here's a very easy fix
from Joerg Lehmann.  I made this change and it fixed the problem.  

cheers-
Larry

-----Original Message-----
From: Joerg Lehmann [mailto:joerg@luga.de]
Sent: Wednesday, March 21, 2001 2:06 PM
To: Larry Prikockis
Subject: Re: [Zope-PTK] problems publishing news...

On 21.03.01, Larry Prikockis wrote:
> For the most part, everything works just fine... I'm *very* impressed with
> the potential of this piece of work.  However, when I try to create a News
> item, and then publish it, I get the following error when I try to view it
> from the main page:
> 
> Error Type: TypeError
> Error Value: call of non-function (type IOBTree)


This is an error in Zope 2.3.1b2. Just replace
	return self._unindex(id)
by 
	return self._unindex[id]
in line 443 of lib/python/SearchIndex/UnIndex.py .