Mercurial > p > roundup > code
diff roundup/roundupdb.py @ 692:0521ddc7bb31 search_indexing-0-4-2-branch
Miscellaneous changes.
cgi_client.py
removed search link for the time being
moved rendering of matches to htmltemplate
hyperdb.py
filtering of nodes on full text search incorporated in filter method
roundupdb.py
added paramater to call of filter method
roundup_indexer.py
added search method to RoundupIndexer class
| author | Roche Compaan <rochecompaan@users.sourceforge.net> |
|---|---|
| date | Fri, 19 Apr 2002 19:54:42 +0000 |
| parents | 52ca0ae46044 |
| children | 54333751e98d |
line wrap: on
line diff
--- a/roundup/roundupdb.py Mon Apr 15 23:25:16 2002 +0000 +++ b/roundup/roundupdb.py Fri Apr 19 19:54:42 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: roundupdb.py,v 1.49 2002-03-19 06:41:49 richard Exp $ +# $Id: roundupdb.py,v 1.49.2.1 2002-04-19 19:54:42 rochecompaan Exp $ __doc__ = """ Extending hyperdb with types specific to issue-tracking. @@ -80,7 +80,7 @@ # try the user alternate addresses if possible props = self.user.getprops() if props.has_key('alternate_addresses'): - users = self.user.filter({'alternate_addresses': address}, + users = self.user.filter(None, {'alternate_addresses': address}, [], []) user = extractUserFromList(self.user, users) if user is not None: return user @@ -604,6 +604,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.49 2002/03/19 06:41:49 richard +# Faster, easier, less mess ;) +# # Revision 1.48 2002/03/18 18:32:00 rochecompaan # All messages sent to the nosy list are now encoded as quoted-printable. #
