From d5a0ddfc00544e210af7276f25a904e23f2556a3 Mon Sep 17 00:00:00 2001 From: richard Date: Tue, 15 Jan 2002 00:50:03 +0000 Subject: [PATCH] #502949 ] index view for non-issues and redisplay git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@550 57a73879-2fb5-44c3-a270-3262357dd7e2 --- CHANGES.txt | 1 + roundup/htmltemplate.py | 10 +++++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 62e1fed..673d445 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -26,6 +26,7 @@ Fixed: . #503353 ] setting properties in initial email . #502956 ] filtering by multilink not supported . #503340 ] creating issue with [asignedto=p.ohly] + . #502949 ] index view for non-issues and redisplay 2002-01-08 - 0.4.0b1 diff --git a/roundup/htmltemplate.py b/roundup/htmltemplate.py index ae83b6b..c58ef4e 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.57 2002-01-14 23:31:21 richard Exp $ +# $Id: htmltemplate.py,v 1.58 2002-01-15 00:50:03 richard Exp $ __doc__ = """ Template engine. @@ -549,7 +549,7 @@ class IndexTemplate(TemplateFunctions): # display the filter section if (show_display_form and self.instance.FILTER_POSITION in ('top and bottom', 'top')): - w('
\n') + w('\n'%self.classname) self.filter_section(filter_template, filter, columns, group, all_filters, all_columns, show_customization) # make sure that the sorting doesn't get lost either @@ -631,7 +631,7 @@ class IndexTemplate(TemplateFunctions): # display the filter section if (show_display_form and hasattr(self.instance, 'FILTER_POSITION') and self.instance.FILTER_POSITION in ('top and bottom', 'bottom')): - w('\n') + w('\n'%self.classname) self.filter_section(filter_template, filter, columns, group, all_filters, all_columns, show_customization) # make sure that the sorting doesn't get lost either @@ -884,6 +884,10 @@ class NewItemTemplate(TemplateFunctions): # # $Log: not supported by cvs2svn $ +# Revision 1.57 2002/01/14 23:31:21 richard +# reverted the change that had plain() hyperlinking the link displays - +# that's what link() is for! +# # Revision 1.56 2002/01/14 07:04:36 richard # . plain rendering of links in the htmltemplate now generate a hyperlink to # the linked node's page. -- 2.30.2