Mercurial > p > roundup > code
changeset 538:67379bcc5da4
[SF#502949] index view for non-issues and redisplay
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 15 Jan 2002 00:50:03 +0000 |
| parents | ad6dbc21a570 |
| children | 3bd18a0890b6 |
| files | CHANGES.txt roundup/htmltemplate.py |
| diffstat | 2 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Tue Jan 15 00:12:40 2002 +0000 +++ b/CHANGES.txt Tue Jan 15 00:50:03 2002 +0000 @@ -26,6 +26,7 @@ . #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
--- a/roundup/htmltemplate.py Tue Jan 15 00:12:40 2002 +0000 +++ b/roundup/htmltemplate.py Tue Jan 15 00:50:03 2002 +0000 @@ -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 @@ # display the filter section if (show_display_form and self.instance.FILTER_POSITION in ('top and bottom', 'top')): - w('<form action="index">\n') + w('<form action="%s">\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 @@ # 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('<form action="index">\n') + w('<form action="%s">\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 @@ # # $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.
