hgbook
diff web/genindex.py @ 1080:3661462e518f
2.4.1 fix translated
author | Zhaoping Sun <zhaopingsun@gmail.com> |
---|---|
date | Thu Nov 19 07:42:58 2009 -0500 (2009-11-19) |
parents | 9e8e5292acaa |
children |
line diff
1.1 --- a/web/genindex.py Fri Mar 27 00:41:15 2009 -0700 1.2 +++ b/web/genindex.py Thu Nov 19 07:42:58 2009 -0500 1.3 @@ -6,7 +6,8 @@ 1.4 filename_re = re.compile(r'<\?dbhtml filename="([^"]+)"\?>') 1.5 title_re = re.compile(r'<title>(.*)</title>') 1.6 1.7 -chapters = glob.glob('../en/ch*.xml') + glob.glob('../en/app*.xml') 1.8 +chapters = (sorted(glob.glob('../en/ch*.xml')) + 1.9 + sorted(glob.glob('../en/app*.xml'))) 1.10 1.11 fp = open('index-read.html.in', 'w') 1.12