Mercurial > p > roundup > code
diff roundup/cgi_client.py @ 826:6d7a45c8464a
Added reindex command to roundup-admin.
Fixed reindex on first access.
Also fixed reindexing of entries that change.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 09 Jul 2002 04:19:09 +0000 |
| parents | fda182844206 |
| children | b22ff808b995 |
line wrap: on
line diff
--- a/roundup/cgi_client.py Tue Jul 09 03:02:53 2002 +0000 +++ b/roundup/cgi_client.py Tue Jul 09 04:19:09 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: cgi_client.py,v 1.133 2002-07-08 15:32:05 gmcm Exp $ +# $Id: cgi_client.py,v 1.134 2002-07-09 04:19:09 richard Exp $ __doc__ = """ WWW request handler (also used in the stand-alone server). @@ -26,7 +26,6 @@ import roundupdb, htmltemplate, date, hyperdb, password from roundup.i18n import _ -from roundup.indexer import Indexer class Unauthorised(ValueError): pass @@ -73,10 +72,6 @@ # someone gave us a non-int debug level, turn it off self.debug = 0 - # used for searching the indexes - self.indexer = Indexer('%s/db'%instance.INSTANCE_HOME) - - def getuid(self): try: return self.db.user.lookup(self.user) @@ -1459,6 +1454,10 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.133 2002/07/08 15:32:05 gmcm +# Pagination of index pages. +# New search form. +# # Revision 1.132 2002/07/08 07:26:14 richard # ehem #
