summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 32818c0)
raw | patch | inline | side by side (parent: 32818c0)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 16 Aug 2002 04:29:41 +0000 (04:29 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Fri, 16 Aug 2002 04:29:41 +0000 (04:29 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@959 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/cgi_client.py | patch | blob | history |
diff --git a/roundup/cgi_client.py b/roundup/cgi_client.py
index b1ce70cf7fd31ca4112a71a8c5fce6cc8779ee8a..55486dd4b077a9a6f57cb35efe0ad6e8aa106f10 100644 (file)
--- a/roundup/cgi_client.py
+++ b/roundup/cgi_client.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: cgi_client.py,v 1.158 2002-08-15 00:40:10 richard Exp $
+# $Id: cgi_client.py,v 1.159 2002-08-16 04:29:41 richard Exp $
__doc__ = """
WWW request handler (also used in the stand-alone server).
self.pagehead(_('%(instancename)s: Index of %(classname)s')%{
'classname': cn, 'instancename': self.instance.INSTANCE_NAME})
-
+
index = htmltemplate.IndexTemplate(self, self.instance.TEMPLATES, cn)
try:
- index.render(filterspec, search_text, filter, columns, sort,
- group, show_customization=show_customization,
+ index.render(filterspec=filterspec, search_text=search_text,
+ filter=filter, columns=columns, sort=sort, group=group,
+ show_customization=show_customization,
show_nodes=show_nodes, pagesize=pagesize, startwith=startwith,
simple_search=simpleform)
except htmltemplate.MissingTemplateError:
#
# $Log: not supported by cvs2svn $
+# Revision 1.158 2002/08/15 00:40:10 richard
+# cleanup
+#
# Revision 1.157 2002/08/13 20:16:09 gmcm
# Use a real parser for templates.
# Rewrite htmltemplate to use the parser (hack, hack).