summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 42876d6)
raw | patch | inline | side by side (parent: 42876d6)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 24 Oct 2001 00:04:41 +0000 (00:04 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Wed, 24 Oct 2001 00:04:41 +0000 (00:04 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@338 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/htmltemplate.py | patch | blob | history |
index d028393073e35b41edd48b0d41259215f00eb26f..5610fe1ed1fc6884dddad9c0fe1c8b01fc0621d1 100644 (file)
--- a/roundup/htmltemplate.py
+++ b/roundup/htmltemplate.py
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
#
-# $Id: htmltemplate.py,v 1.34 2001-10-23 22:56:36 richard Exp $
+# $Id: htmltemplate.py,v 1.35 2001-10-24 00:04:41 richard Exp $
import os, re, StringIO, urllib, cgi, errno
# display the filter section
if (hasattr(self.client, 'FILTER_POSITION') and
self.client.FILTER_POSITION in ('top and bottom', 'top')):
- w('<form>\n')
+ w('<form action="index">\n')
self.filter_section(filter_template, filter, columns, group,
all_filters, all_columns, show_display_form, show_customization)
w('</form>\n')
# display the filter section
if (hasattr(self.client, 'FILTER_POSITION') and
self.client.FILTER_POSITION in ('top and bottom', 'bottom')):
- w('<form>\n')
+ w('<form action="index">\n')
self.filter_section(filter_template, filter, columns, group,
all_filters, all_columns, show_display_form, show_customization)
w('</form>\n')
#
# $Log: not supported by cvs2svn $
+# Revision 1.34 2001/10/23 22:56:36 richard
+# Bugfix in filter "widget" placement, thanks Roch'e
+#
# Revision 1.33 2001/10/23 01:00:18 richard
# Re-enabled login and registration access after lopping them off via
# disabling access for anonymous users.