Places sorted, fixed several problems in Web Site generation

svn: r391
This commit is contained in:
Don Allingham
2001-09-08 13:27:14 +00:00
parent 48a9083fa4
commit 15fbfe6286
3 changed files with 23 additions and 10 deletions

View File

@@ -1891,6 +1891,10 @@ def load_places():
index = 0
places = database.getPlaceMap().values()
nlist = map(lambda x: (string.upper(x.get_title()),x),places)
nlist.sort()
places = map(lambda(key,x): x, nlist)
for src in places:
title = src.get_title()