Mercurial > public > mercurial-scm > hg-stable
diff mercurial/hgweb/hgwebdir_mod.py @ 37508:30a7b32897f1
hgwebdir: wrap {entries} with mappinggenerator
No bare generator should be put in a template mapping.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 01 Apr 2018 22:11:58 +0900 |
parents | c97b936d8bb5 |
children | 876d54f800cf |
line wrap: on
line diff
--- a/mercurial/hgweb/hgwebdir_mod.py Fri Apr 06 09:53:17 2018 -0700 +++ b/mercurial/hgweb/hgwebdir_mod.py Sun Apr 01 22:11:58 2018 +0900 @@ -35,6 +35,7 @@ pycompat, scmutil, templater, + templateutil, ui as uimod, util, ) @@ -246,9 +247,8 @@ yield row -def indexentries(ui, repos, req, stripecount, sortcolumn='', - descending=False, subdir=''): - +def _indexentriesgen(context, ui, repos, req, stripecount, sortcolumn, + descending, subdir): rows = rawindexentries(ui, repos, req, subdir=subdir) sortdefault = None, False @@ -262,6 +262,11 @@ row['parity'] = parity yield row +def indexentries(ui, repos, req, stripecount, sortcolumn='', + descending=False, subdir=''): + args = (ui, repos, req, stripecount, sortcolumn, descending, subdir) + return templateutil.mappinggenerator(_indexentriesgen, args=args) + class hgwebdir(object): """HTTP server for multiple repositories.