Skip to content

Commit 7cce904

Browse files
author
Richard Jones
committed
Not sure why the cgi_client had an indexer argument.
1 parent f5347e3 commit 7cce904

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

roundup/cgi_client.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: cgi_client.py,v 1.130 2002-06-27 12:01:53 gmcm Exp $
18+
# $Id: cgi_client.py,v 1.131 2002-07-08 06:53:57 richard Exp $
1919

2020
__doc__ = """
2121
WWW request handler (also used in the stand-alone server).
@@ -26,7 +26,6 @@
2626

2727
import roundupdb, htmltemplate, date, hyperdb, password
2828
from roundup.i18n import _
29-
from roundup_indexer import RoundupIndexer
3029

3130
class Unauthorised(ValueError):
3231
pass
@@ -72,7 +71,6 @@ def __init__(self, instance, request, env, form=None):
7271
except ValueError:
7372
# someone gave us a non-int debug level, turn it off
7473
self.debug = 0
75-
self.indexer = RoundupIndexer('%s/db'%instance.INSTANCE_HOME)
7674

7775
def getuid(self):
7876
try:
@@ -1392,6 +1390,10 @@ def parsePropsFromForm(db, cl, form, nodeid=0, num_re=re.compile('^\d+$')):
13921390

13931391
#
13941392
# $Log: not supported by cvs2svn $
1393+
# Revision 1.130 2002/06/27 12:01:53 gmcm
1394+
# If the form has a :multilink, put a back href in the pageheader (back to the linked-to node).
1395+
# Some minor optimizations (only compile regexes once).
1396+
#
13951397
# Revision 1.129 2002/06/20 23:52:11 richard
13961398
# Better handling of unauth attempt to edit stuff
13971399
#

0 commit comments

Comments
 (0)