Skip to content

Commit 857fa46

Browse files
author
Richard Jones
committed
bugfix
1 parent 39650c2 commit 857fa46

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

roundup/cgi_client.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: cgi_client.py,v 1.158 2002-08-15 00:40:10 richard Exp $
18+
# $Id: cgi_client.py,v 1.159 2002-08-16 04:29:41 richard Exp $
1919

2020
__doc__ = """
2121
WWW request handler (also used in the stand-alone server).
@@ -567,11 +567,12 @@ def list(self, sort=None, group=None, filter=None, columns=None,
567567

568568
self.pagehead(_('%(instancename)s: Index of %(classname)s')%{
569569
'classname': cn, 'instancename': self.instance.INSTANCE_NAME})
570-
570+
571571
index = htmltemplate.IndexTemplate(self, self.instance.TEMPLATES, cn)
572572
try:
573-
index.render(filterspec, search_text, filter, columns, sort,
574-
group, show_customization=show_customization,
573+
index.render(filterspec=filterspec, search_text=search_text,
574+
filter=filter, columns=columns, sort=sort, group=group,
575+
show_customization=show_customization,
575576
show_nodes=show_nodes, pagesize=pagesize, startwith=startwith,
576577
simple_search=simpleform)
577578
except htmltemplate.MissingTemplateError:
@@ -1745,6 +1746,9 @@ def parsePropsFromForm(db, cl, form, nodeid=0, num_re=re.compile('^\d+$')):
17451746

17461747
#
17471748
# $Log: not supported by cvs2svn $
1749+
# Revision 1.158 2002/08/15 00:40:10 richard
1750+
# cleanup
1751+
#
17481752
# Revision 1.157 2002/08/13 20:16:09 gmcm
17491753
# Use a real parser for templates.
17501754
# Rewrite htmltemplate to use the parser (hack, hack).

0 commit comments

Comments
 (0)