Hi all, Digital Creations is happy to announce that Zope 2.1.0 final has been released! This release includes many bug fixes, performance and reliability improvements and a number of new features since 2.0.1, including the beginnings of internationalization support, FastCGI support and relevance ranking for ZCatalog. For more infomation on what's new in 2.1.0, see the file CHANGES.txt in the Zope distribution or on the Zope 2.1.0 download site: http://www.zope.org/Products/Zope/2.1.0/ Brian Lloyd brian@digicool.com Software Engineer 540.371.6909 Digital Creations http://www.digicool.com
Brian Lloyd wrote:
Digital Creations is happy to announce that Zope 2.1.0 final has been released! This release includes many bug fixes, performance and reliability improvements and a number of new features since 2.0.1.
Some of these bug fixes aren't in the CHANGES.txt, as far as I can tell - which is good (less bugs than you'd think). Like the one where you'd click on "methods" in a Product and it would claim you're not authorized to view it. Are there any more serious bugs that were fixed but not documented? And I vaguely recall some new feature mentioned by someone that's not in CHANGES.txt - too late in the evening for me to remember what it was. -- Itamar S.T. itamars@ibm.net
What is the status with regard to upgrading from 2.01. Can I just drop my data.fs and products into the new directories or do I have to go through some other process? --sam Brian Lloyd wrote:
Hi all,
Digital Creations is happy to announce that Zope 2.1.0 final has been released! This release includes many bug fixes, performance and reliability improvements and a number of new features since 2.0.1, including the beginnings of internationalization support, FastCGI support and relevance ranking for ZCatalog. For more infomation on what's new in 2.1.0, see the file CHANGES.txt in the Zope distribution or on the Zope 2.1.0 download site:
http://www.zope.org/Products/Zope/2.1.0/
Brian Lloyd brian@digicool.com Software Engineer 540.371.6909 Digital Creations http://www.digicool.com
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope No cross posts or HTML encoding! (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
I have been poking around trying to get squishdot to work with the latest zope and I have got it working but I am not sure why it works, I thought if I explain what I did, to get it working, and the error I was geting, some of you Zope gurus could explain to me what I did, because I can't figure it out. When you add the squishdot product and it begins to create an instance of a squishsite, it would give this error message: Error Type: TypeError Error Value: call of non-function (type module) (i have added the traceback at the bottom of the message) What I did was change the file TextIndex.py in the Zope-2.1.0-linux2-x86/lib/python/SearchIndex and commented out the line 209 : BTree = BTree.BTree and changed lines 253: self._index=BTree() to self._index=BTree.BTree() and 264: self._index=BTree() to self._index=BTree.BTree() and now it works fine, no problems, so my question is, what did I do? It seems like BTree=BTree.BTree self._index=BTree() is the same as #BTree=BTree.BTree self._index=BTree.BTree() So I am not sure what the difference is, here is the traceback of the original message: Traceback (innermost last): File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/ZPublisher/Publish.py, line 214, in publish_module File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/ZPublisher/Publish.py, line 179, in publish File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/Zope/__init__.py, line 202, in zpublisher_exception_hook (Object: ApplicationDefaultPermissions) File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/ZPublisher/Publish.py, line 165, in publish File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/ZPublisher/mapply.py, line 160, in mapply (Object: manage_addSquishdot) File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/ZPublisher/Publish.py, line 102, in call_object (Object: manage_addSquishdot) File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/Products/Squishdot/Squishdot.py, line 1560, in manage_addSquishdot (Object: ApplicationDefaultPermissions) File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/Products/Squishdot/Squishdot.py, line 381, in __init__ (Object: ElementWithAttributes) File /usr/local/zope/Zope-2.1.0-linux2-x86/lib/python/SearchIndex/TextIndex.py, line 253, in __init__ TypeError: (see above) thanks Scott
participants (4)
-
Brian Lloyd -
Itamar Shtull-Trauring -
Sam Gendler -
scott kaplan