##// END OF EJS Templates
hgweb: wrap {earlycommands} and {othercommands} of help with mappinggenerator...
Yuya Nishihara -
r38213:c3df4150 default
parent child Browse files
Show More
@@ -1417,19 +1417,19 b' def help(web):'
1417 1417 early.sort()
1418 1418 other.sort()
1419 1419
1420 def earlycommands(**map):
1420 def earlycommands(context):
1421 1421 for c, doc in early:
1422 1422 yield {'topic': c, 'summary': doc}
1423 1423
1424 def othercommands(**map):
1424 def othercommands(context):
1425 1425 for c, doc in other:
1426 1426 yield {'topic': c, 'summary': doc}
1427 1427
1428 1428 return web.sendtemplate(
1429 1429 'helptopics',
1430 1430 topics=templateutil.mappinggenerator(topics),
1431 earlycommands=earlycommands,
1432 othercommands=othercommands,
1431 earlycommands=templateutil.mappinggenerator(earlycommands),
1432 othercommands=templateutil.mappinggenerator(othercommands),
1433 1433 title='Index')
1434 1434
1435 1435 # Render an index of sub-topics.
General Comments 0
You need to be logged in to leave comments. Login now