From: richard Date: Sat, 3 Nov 2001 01:43:47 +0000 (+0000) Subject: Ahah! Fixed the lynx problem - there was a hidden input field misplaced. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ad99ea580b22696edcf84146ed38624b88f7bd06;p=roundup.git Ahah! Fixed the lynx problem - there was a hidden input field misplaced. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@361 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/htmltemplate.py b/roundup/htmltemplate.py index 1a083b0..f3fe70c 100644 --- a/roundup/htmltemplate.py +++ b/roundup/htmltemplate.py @@ -15,7 +15,7 @@ # 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 @@ -526,11 +526,12 @@ class IndexTemplate(TemplateFunctions): w('
\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(''% + ','.join(sort)) w('
\n') - # make sure that the sorting doesn't get lost either - if sort: - w(''%','.join(sort)) # now display the index section w('\n') @@ -606,6 +607,10 @@ class IndexTemplate(TemplateFunctions): w('\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(''% + ','.join(sort)) w('\n') @@ -843,6 +848,10 @@ class NewItemTemplate(TemplateFunctions): # # $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. #