% header('%s Release Notes' % name) %>
Release Notes
<% from glob import glob
r = {}
for f in glob('Docs/RelNotes-*.*html'):
if f.endswith('.html'):
v = f[14:-5]
elif f.endswith('.phtml'):
v = f[14:-6]
else:
continue
if v == 'X.Y':
continue
r[v] = None
r = r.keys()
r.sort(lambda x, y: cmp(y.split('.'), x.split('.')))
for v in r:
print '- %s
' % (v, v)
%>
<% footer() %>