Sort the tags attached to a revision in the log view. Fix came from

bug #994522.


git-svn-id: http://viewvc.tigris.org/svn/viewvc/trunk@891 8cb11bc2-c004-0410-86c3-e597b4017df7
remotes/tags/1.0.0-rc1
jhenstridge 2004-07-22 02:19:07 +00:00
parent 247234ff03
commit 80e621dc0d
1 changed files with 1 additions and 0 deletions

View File

@ -715,6 +715,7 @@ def prep_tags(request, tags):
links = [ ]
for tag in tags:
links.append(_item(name=tag.name, href=url+tag.name))
links.sort(lambda a, b: cmp(a.name, b.name))
return links
def is_viewable_image(mime_type):