Mercurial > p > roundup > code
diff roundup/backends/back_anydbm.py @ 1249:6c24a86a12ae
Fixes for SourceForge tracker bugs.
- fixed filter() with no sort/group [SF#618614]
- fixed register with no session [SF#618611]
- fixed log / pid file path handling in roundup-server [SF#617981]
- fixed old gadfly compatibiltiy problem, for sure this time [SF#612873]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 07 Oct 2002 00:52:51 +0000 |
| parents | 46515c0d115e |
| children | 209a47ede743 |
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py Fri Oct 04 06:34:07 2002 +0000 +++ b/roundup/backends/back_anydbm.py Mon Oct 07 00:52:51 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.87 2002-10-04 06:30:30 richard Exp $ +#$Id: back_anydbm.py,v 1.88 2002-10-07 00:52:51 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 @@ -1531,8 +1531,8 @@ l.sort() return l - def filter(self, search_matches, filterspec, sort, group, - num_re = re.compile('^\d+$')): + def filter(self, search_matches, filterspec, sort=(None,None), + group=(None,None), num_re = re.compile('^\d+$')): ''' Return a list of the ids of the active nodes in this class that match the 'filter' spec, sorted by the group spec and then the sort spec.
