Skip to content

Commit 35e7ea3

Browse files
author
Richard Jones
committed
applied patch [SF#739314] (sorry John!)
1 parent 1ea8cff commit 35e7ea3

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Fixed:
1515
- fixed upgrading docs for timezones (sf bug 790498)
1616
- set the content type on page templates (can have XML templates now)
1717
- various cosmetic fixes (thanks James Kew for being persistent :)
18+
- applied patch 739314 (sorry John!)
1819

1920

2021
2003-08-08 0.6.0

roundup/admin.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: admin.py,v 1.57 2003-08-28 04:46:39 richard Exp $
19+
# $Id: admin.py,v 1.58 2003-08-29 12:43:03 richard Exp $
2020

2121
'''Administration commands for maintaining Roundup trackers.
2222
'''
@@ -719,7 +719,9 @@ def do_display(self, args):
719719
cl = self.get_class(classname)
720720

721721
# display the values
722-
for key in cl.properties.keys():
722+
keys = cl.properties.keys()
723+
keys.sort()
724+
for key in keys:
723725
value = cl.get(nodeid, key)
724726
print _('%(key)s: %(value)s')%locals()
725727

templates/classic/html/page.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<a href="issue?:sort=-activity&:group=priority&:filter=status,assignedto&:columns=id,activity,title,creator,status&status=-1,1,2,3,4,5,6,7&assignedto=-1">Show Unassigned</a><br>
3838
<a href="issue?:sort=-activity&:group=priority&:filter=status&:columns=id,activity,title,creator,assignedto,status&status=-1,1,2,3,4,5,6,7">Show All</a><br>
3939
<a href="issue?:template=search">Search</a><br>
40-
<input type="submit" value="Show issue no."><input size="4" type="text" name=":number">
40+
<input type="submit" style="padding: 0" value="Show issue:"><input size="4" type="text" name=":number">
4141
<input type="hidden" name=":type" value="issue">
4242
<input type="hidden" name=":action" value="show">
4343
</p>
@@ -71,10 +71,10 @@
7171
<b>Login</b><br>
7272
<input size="10" name="__login_name"><br>
7373
<input size="10" type="password" name="__login_password"><br>
74-
<input type="submit" name=":action" value="Login">
74+
<input type="submit" name=":action" value="Login"><br>
7575
<span tal:replace="structure request/indexargs_form" />
7676
<a href="user?:template=register">Register</a><br>
77-
<a href="user?:template=forgotten">Lost your password?</a><br>
77+
<a href="user?:template=forgotten">Lost&nbsp;your&nbsp;login?</a><br>
7878
</p>
7979
</form>
8080

0 commit comments

Comments
 (0)