Skip to content

Commit 5455588

Browse files
author
Richard Jones
committed
[SF#502949] index view for non-issues and redisplay
1 parent 8840e29 commit 5455588

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Fixed:
2626
. #503353 ] setting properties in initial email
2727
. #502956 ] filtering by multilink not supported
2828
. #503340 ] creating issue with [asignedto=p.ohly]
29+
. #502949 ] index view for non-issues and redisplay
2930

3031

3132
2002-01-08 - 0.4.0b1

roundup/htmltemplate.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: htmltemplate.py,v 1.57 2002-01-14 23:31:21 richard Exp $
18+
# $Id: htmltemplate.py,v 1.58 2002-01-15 00:50:03 richard Exp $
1919

2020
__doc__ = """
2121
Template engine.
@@ -549,7 +549,7 @@ def render(self, filterspec={}, filter=[], columns=[], sort=[], group=[],
549549
# display the filter section
550550
if (show_display_form and
551551
self.instance.FILTER_POSITION in ('top and bottom', 'top')):
552-
w('<form action="index">\n')
552+
w('<form action="%s">\n'%self.classname)
553553
self.filter_section(filter_template, filter, columns, group,
554554
all_filters, all_columns, show_customization)
555555
# make sure that the sorting doesn't get lost either
@@ -631,7 +631,7 @@ def render(self, filterspec={}, filter=[], columns=[], sort=[], group=[],
631631
# display the filter section
632632
if (show_display_form and hasattr(self.instance, 'FILTER_POSITION') and
633633
self.instance.FILTER_POSITION in ('top and bottom', 'bottom')):
634-
w('<form action="index">\n')
634+
w('<form action="%s">\n'%self.classname)
635635
self.filter_section(filter_template, filter, columns, group,
636636
all_filters, all_columns, show_customization)
637637
# make sure that the sorting doesn't get lost either
@@ -884,6 +884,10 @@ def render(self, form):
884884

885885
#
886886
# $Log: not supported by cvs2svn $
887+
# Revision 1.57 2002/01/14 23:31:21 richard
888+
# reverted the change that had plain() hyperlinking the link displays -
889+
# that's what link() is for!
890+
#
887891
# Revision 1.56 2002/01/14 07:04:36 richard
888892
# . plain rendering of links in the htmltemplate now generate a hyperlink to
889893
# the linked node's page.

0 commit comments

Comments
 (0)