Commit 033942a7 authored by Jim Fulton's avatar Jim Fulton

Added debugging info.

parent ec85929d
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
############################################################################## ##############################################################################
__doc__='''Shared Aqueduct classes and functions __doc__='''Shared Aqueduct classes and functions
$Id: Aqueduct.py,v 1.15 1997/12/05 21:26:54 jim Exp $''' $Id: Aqueduct.py,v 1.16 1997/12/12 23:38:04 jim Exp $'''
__version__='$Revision: 1.15 $'[11:-2] __version__='$Revision: 1.16 $'[11:-2]
from Globals import HTMLFile, Persistent from Globals import HTMLFile, Persistent
import DocumentTemplate, DateTime, regex, regsub, string, urllib, rotor import DocumentTemplate, DateTime, regex, regsub, string, urllib, rotor
...@@ -192,7 +192,8 @@ custom_default_report_src=DocumentTemplate.File( ...@@ -192,7 +192,8 @@ custom_default_report_src=DocumentTemplate.File(
dtml_dir+'customDefaultReport.dtml') dtml_dir+'customDefaultReport.dtml')
def custom_default_report(id, result, action=''): def custom_default_report(id, result, action=''):
columns=result._searchable_result_columns() columns=result._searchable_result_columns()
__traceback_info__=columns
heading=('<tr>\n%s</tr>' % heading=('<tr>\n%s</tr>' %
string.joinfields( string.joinfields(
map(lambda c: map(lambda c:
...@@ -359,6 +360,9 @@ def delimited_output(results,REQUEST,RESPONSE): ...@@ -359,6 +360,9 @@ def delimited_output(results,REQUEST,RESPONSE):
############################################################################## ##############################################################################
# #
# $Log: Aqueduct.py,v $ # $Log: Aqueduct.py,v $
# Revision 1.16 1997/12/12 23:38:04 jim
# Added debugging info.
#
# Revision 1.15 1997/12/05 21:26:54 jim # Revision 1.15 1997/12/05 21:26:54 jim
# Minor change to help out testing DAs. # Minor change to help out testing DAs.
# #
......
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