Commit 203d8804 authored by Jim Fulton's avatar Jim Fulton

Fixed InvalidParameter NameError

parent 743b3ca8
......@@ -10,8 +10,8 @@
##############################################################################
__doc__='''Shared Aqueduct classes and functions
$Id: Aqueduct.py,v 1.22 1998/04/15 14:23:36 jim Exp $'''
__version__='$Revision: 1.22 $'[11:-2]
$Id: Aqueduct.py,v 1.23 1998/04/15 14:55:26 jim Exp $'''
__version__='$Revision: 1.23 $'[11:-2]
from Globals import HTMLFile, Persistent
import DocumentTemplate, DateTime, regex, regsub, string, urllib, rotor
......@@ -26,6 +26,8 @@ from string import strip
dtml_dir="%s/lib/python/Aqueduct/" % SOFTWARE_HOME
InvalidParameter='Invalid Parameter'
class BaseQuery(Persistent, SimpleItem.Item, Acquisition.Implicit, RoleManager):
def query_year(self): return self.query_date.year()
......@@ -387,6 +389,9 @@ def delimited_output(results,REQUEST,RESPONSE):
##############################################################################
#
# $Log: Aqueduct.py,v $
# Revision 1.23 1998/04/15 14:55:26 jim
# Fixed InvalidParameter NameError
#
# Revision 1.22 1998/04/15 14:23:36 jim
# Changed parse to return a mapping object that keeps its
# items sorted in original order.
......
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