##// END OF EJS Templates
[PATCH] Move default page name into map file...
Jeff Sipek -
r858:c333dfa8 default
parent child Browse files
Show More
@@ -622,7 +622,10 b' class hgweb:'
622 622 "footer":footer,
623 623 })
624 624
625 if not args.has_key('cmd') or args['cmd'][0] == 'changelog':
625 if not args.has_key('cmd'):
626 args['cmd'] = [self.t.cache['default'],]
627
628 if args['cmd'][0] == 'changelog':
626 629 c = self.repo.changelog.count() - 1
627 630 hi = c
628 631 if args.has_key('rev'):
@@ -1,3 +1,4 b''
1 default = "changelog"
1 2 header = header.tmpl
2 3 footer = footer.tmpl
3 4 search = search.tmpl
General Comments 0
You need to be logged in to leave comments. Login now