|
15 | 15 | # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, |
16 | 16 | # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
17 | 17 | # |
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 $ |
19 | 19 |
|
20 | 20 | __doc__ = """ |
21 | 21 | WWW request handler (also used in the stand-alone server). |
|
26 | 26 |
|
27 | 27 | import roundupdb, htmltemplate, date, hyperdb, password |
28 | 28 | from roundup.i18n import _ |
29 | | -from roundup_indexer import RoundupIndexer |
30 | 29 |
|
31 | 30 | class Unauthorised(ValueError): |
32 | 31 | pass |
@@ -72,7 +71,6 @@ def __init__(self, instance, request, env, form=None): |
72 | 71 | except ValueError: |
73 | 72 | # someone gave us a non-int debug level, turn it off |
74 | 73 | self.debug = 0 |
75 | | - self.indexer = RoundupIndexer('%s/db'%instance.INSTANCE_HOME) |
76 | 74 |
|
77 | 75 | def getuid(self): |
78 | 76 | try: |
@@ -1392,6 +1390,10 @@ def parsePropsFromForm(db, cl, form, nodeid=0, num_re=re.compile('^\d+$')): |
1392 | 1390 |
|
1393 | 1391 | # |
1394 | 1392 | # $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 | +# |
1395 | 1397 | # Revision 1.129 2002/06/20 23:52:11 richard |
1396 | 1398 | # Better handling of unauth attempt to edit stuff |
1397 | 1399 | # |
|
0 commit comments