Commit bccfdb17 authored by Jim Fulton's avatar Jim Fulton

Fixed argument parse bug

parent 4be2cbd3
...@@ -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.9 1997/09/25 21:11:13 jim Exp $''' $Id: Aqueduct.py,v 1.10 1997/09/25 21:45:08 jim Exp $'''
__version__='$Revision: 1.9 $'[11:-2] __version__='$Revision: 1.10 $'[11:-2]
from Globals import HTMLFile from Globals import HTMLFile
import DocumentTemplate, DateTime, regex, regsub, string, urllib, rotor import DocumentTemplate, DateTime, regex, regsub, string, urllib, rotor
...@@ -273,7 +273,7 @@ def parse(text, ...@@ -273,7 +273,7 @@ def parse(text,
result[name]=value result[name]=value
return parse(text[l:],prefix,result) return parse(text[l:],result)
def quotedHTML(text, def quotedHTML(text,
character_entities=( character_entities=(
...@@ -362,6 +362,9 @@ def delimited_output(results,REQUEST,RESPONSE): ...@@ -362,6 +362,9 @@ def delimited_output(results,REQUEST,RESPONSE):
############################################################################## ##############################################################################
# #
# $Log: Aqueduct.py,v $ # $Log: Aqueduct.py,v $
# Revision 1.10 1997/09/25 21:45:08 jim
# Fixed argument parse bug
#
# Revision 1.9 1997/09/25 21:11:13 jim # Revision 1.9 1997/09/25 21:11:13 jim
# cleanup and other work # cleanup and other work
# #
......
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