[Zope-Annce] [Ann] DMpdb: a pdb extension which understands Zope's additional traceback info

2005-08-14 Thread Dieter Maurer
DMpdb is a tiny Python package which extends and improves Python's pdb. Especially, it provides the module Zpdb which defines a debugger class that understands Zope's __traceback_info__ and __traceback_supplement__ (and display this valuable information). -- Dieter

[Zope-Annce] [ANN] IncrementalSearch[2] -- Bugfix release

2006-01-20 Thread Dieter Maurer
I found a bug in IncrementalSearch[2] that can cause wrong results under rare circumstances. One requirement is a not search embedded in an or search (but this is not sufficient to cause the problem). You find fixed versions at http://www.dieter.handshake.de/pyprojects/zope

[Zope-Annce] [Warning] ManagableIndex Zope2.8+ incompatibility

2006-05-05 Thread Dieter Maurer
WARNING! We hit an incompatibility of ManagableIndex with Zope 2.8+. For Python new style classes, __len__ instance attributes are no longer taken into account in the implementation of the len builtin. len now only looks for __len__ class attributes. From Zope 2.8+ on, all

[Zope-Annce] [Ann] AdvancedQuery 2.0 supports incremental ranking

2006-06-25 Thread Dieter Maurer
AdvancedQuery is a search engine similar to Zope's ZCatalog that tries to remove many of ZCatalogs limitations and strives heavily for efficiency. AdvancedQuerys can be arbitrarily built from elementary index queries with and, or and not. This gives richer query expressiveness than ZCatalog.

[Zope-Annce] [ATTENTION] Memory leak in IncrementalSearch2

2007-04-03 Thread Dieter Maurer
Crosspost: reply-to set to zope@zope.org I detected and fixed a memory leak in IncrementalSearch2. Thus, if you are using IncrementalSearch2, you should upgradeBzope zope Dieter ___ Zope-Announce maillist - Zope-Announce@zope.org

[Zope-Annce] [ATTENTION] Memory leak in IncrementalSearch2

2007-04-03 Thread Dieter Maurer
Crosspost: reply-to set to zope@zope.org I detected and fixed a memory leak in IncrementalSearch2. Thus, if you are using IncrementalSearch2, you should upgrade http://www.dieter.handshake.de/pyprojects/zope You probably get this message twice -- a wrong shortcut had sent it prematurely.

[Zope-Annce] [Ann] dm.zdoc: pydoc for Zope

2008-01-06 Thread Dieter Maurer
dm.zdoc is a tiny wrapper around pydoc, the Python documentation generator in Python's runtime library. This wrapping makes pydoc available for Zope. A wrapper is necessary because Zope uses the Python package __path__ feature which is not well supported by pydoc. Download via PyPi:

[Zope-Annce] ZClasses resurrected

2009-10-03 Thread Dieter Maurer
The Zope developers have ripped out the ZClasses functionality from the Zope core in version 2.12. As promised, I have collected the former code in a new package (dm.zopepatches.zclasses on PyPI). When imported, this package uses monkey patching to restore the ZClasses functionality. New tests