Commit b76991f9 authored by Jim Fulton's avatar Jim Fulton

Removed Cancel button from test input form.

parent e71adc76
No related merge requests found
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
__doc__='''Generic Database adapter __doc__='''Generic Database adapter
$Id: DA.py,v 1.30 1998/01/27 20:08:19 jim Exp $''' $Id: DA.py,v 1.31 1998/01/28 16:04:40 jim Exp $'''
__version__='$Revision: 1.30 $'[11:-2] __version__='$Revision: 1.31 $'[11:-2]
import OFS.SimpleItem, Aqueduct.Aqueduct, Aqueduct.RDB import OFS.SimpleItem, Aqueduct.Aqueduct, Aqueduct.RDB
import DocumentTemplate, marshal, md5, base64, DateTime, Acquisition, os import DocumentTemplate, marshal, md5, base64, DateTime, Acquisition, os
...@@ -115,7 +115,7 @@ class DA( ...@@ -115,7 +115,7 @@ class DA(
input_src=default_input_form(self.title_or_id(), input_src=default_input_form(self.title_or_id(),
self._arg, 'manage_test', self._arg, 'manage_test',
'<!--#var manage_tabs-->') '<!--#var manage_tabs-->')
return HTML(input_src)(self, REQUEST) return HTML(input_src)(self, REQUEST, HTTP_REFERER='')
def manage_test(self, REQUEST): def manage_test(self, REQUEST):
'Perform an actual query' 'Perform an actual query'
...@@ -337,6 +337,9 @@ def getBrain(self, ...@@ -337,6 +337,9 @@ def getBrain(self,
############################################################################## ##############################################################################
# #
# $Log: DA.py,v $ # $Log: DA.py,v $
# Revision 1.31 1998/01/28 16:04:40 jim
# Removed Cancel button from test input form.
#
# Revision 1.30 1998/01/27 20:08:19 jim # Revision 1.30 1998/01/27 20:08:19 jim
# Fixed bugs in caching logic. # Fixed bugs in caching logic.
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment