summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9300d2c)
raw | patch | inline | side by side (parent: 9300d2c)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sat, 3 Nov 2001 01:43:47 +0000 (01:43 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sat, 3 Nov 2001 01:43:47 +0000 (01:43 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@361 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/htmltemplate.py | patch | blob | history |
index 1a083b056711fdf9193e0fa013c73145487bd7e1..f3fe70c5921d064baa03bfb2d2064a7886e8f716 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.38 2001-10-31 06:58:51 richard Exp $
+# $Id: htmltemplate.py,v 1.39 2001-11-03 01:43:47 richard Exp $
import os, re, StringIO, urllib, cgi, errno
w('<form action="index">\n')
self.filter_section(filter_template, filter, columns, group,
all_filters, all_columns, show_display_form, show_customization)
+ # make sure that the sorting doesn't get lost either
+ if sort:
+ w('<input type="hidden" name=":sort" value="%s">'%
+ ','.join(sort))
w('</form>\n')
- # make sure that the sorting doesn't get lost either
- if sort:
- w('<input type="hidden" name=":sort" value="%s">'%','.join(sort))
# now display the index section
w('<table width=100% border=0 cellspacing=0 cellpadding=2>\n')
w('<form action="index">\n')
self.filter_section(filter_template, filter, columns, group,
all_filters, all_columns, show_display_form, show_customization)
+ # make sure that the sorting doesn't get lost either
+ if sort:
+ w('<input type="hidden" name=":sort" value="%s">'%
+ ','.join(sort))
w('</form>\n')
#
# $Log: not supported by cvs2svn $
+# Revision 1.38 2001/10/31 06:58:51 richard
+# Added the wrap="hard" attribute to the textarea of the note field so the
+# messages wrap sanely.
+#
# Revision 1.37 2001/10/31 06:24:35 richard
# Added do_stext to htmltemplate, thanks Brad Clements.
#