Mercurial > p > roundup > code
diff roundup/backends/back_anydbm.py @ 1170:af104fa52746
Added some words to the installation doc about choosing backends.
Added hyperdb Class.filter unit tests - gadfly currently fails
substring searching, but I knew it would :(
Lots of fixes to the RDBMS backend - it works a treat now!
A couple of other cleanups in CGI land...
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 19 Sep 2002 02:37:41 +0000 |
| parents | a1a548c15260 |
| children | 8e318dfaf479 |
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py Wed Sep 18 22:26:07 2002 +0000 +++ b/roundup/backends/back_anydbm.py Thu Sep 19 02:37:41 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -#$Id: back_anydbm.py,v 1.80 2002-09-17 23:59:59 richard Exp $ +#$Id: back_anydbm.py,v 1.81 2002-09-19 02:37:41 richard Exp $ ''' This module defines a backend that saves the hyperdatabase in a database chosen by anydbm. It is guaranteed to always be available in python @@ -1499,6 +1499,10 @@ "sort" and "group" are (dir, prop) where dir is '+', '-' or None and prop is a prop name or None "search_matches" is {nodeid: marker} + + The filter must match all properties specificed - but if the + property value to match is a list, any one of the values in the + list may match for that property to match. ''' cn = self.classname
