# HG changeset patch # User Gregory Szorc # Date 1520789845 25200 # Node ID 455918512ed2a24b20ce7edf3e57e5a0190d0382 # Parent f370f1b4f12cfd71376e1c9273493e5b4323ae07 hgweb: extract entries() to standalone function There was some real wonkiness going on here. Essentially, the inline function was being executed with default arguments because a function reference was passed as-is into the templater. That seemed odd. So now we pass an explicit generator of the function result. Moving this code out of makeindex() makes makeindex() small enough to reason about. This makes it easier to see weird things, like the fact that we're calling self.refresh() twice. Why, I'm not sure. I'm also not sure why we need to call updatereqenv() to possibly update the SERVER_NAME, SERVER_PORT, and SCRIPT_NAME variables as part of rendering an index. I'll dig into these things in subsequent commits. Differential Revision: https://phab.mercurial-scm.org/D2815 diff -r f370f1b4f12c -r 455918512ed2 mercurial/hgweb/hgwebdir_mod.py --- a/mercurial/hgweb/hgwebdir_mod.py Sun Mar 11 10:24:46 2018 -0700 +++ b/mercurial/hgweb/hgwebdir_mod.py Sun Mar 11 10:37:25 2018 -0700 @@ -273,6 +273,22 @@ yield row +def indexentries(ui, repos, wsgireq, req, stripecount, sortcolumn='', + descending=False, subdir='', **map): + + rows = rawindexentries(ui, repos, wsgireq, req, subdir=subdir, **map) + + sortdefault = None, False + + if sortcolumn and sortdefault != (sortcolumn, descending): + sortkey = '%s_sort' % sortcolumn + rows = sorted(rows, key=lambda x: x[sortkey], + reverse=descending) + + for row, parity in zip(rows, paritygen(stripecount)): + row['parity'] = parity + yield row + class hgwebdir(object): """HTTP server for multiple repositories. @@ -472,22 +488,9 @@ def makeindex(self, wsgireq, tmpl, subdir=""): req = wsgireq.req - sortdefault = None, False - def entries(sortcolumn="", descending=False, subdir="", **map): - rows = rawindexentries(self.ui, self.repos, wsgireq, req, - subdir=subdir, **map) - - if sortcolumn and sortdefault != (sortcolumn, descending): - sortkey = '%s_sort' % sortcolumn - rows = sorted(rows, key=lambda x: x[sortkey], - reverse=descending) - for row, parity in zip(rows, paritygen(self.stripecount)): - row['parity'] = parity - yield row - self.refresh() sortable = ["name", "description", "contact", "lastchange"] - sortcolumn, descending = sortdefault + sortcolumn, descending = None, False if 'sort' in req.qsparams: sortcolumn = req.qsparams['sort'] descending = sortcolumn.startswith('-') @@ -504,6 +507,10 @@ self.refresh() self.updatereqenv(wsgireq.env) + entries = indexentries(self.ui, self.repos, wsgireq, req, + self.stripecount, sortcolumn=sortcolumn, + descending=descending, subdir=subdir) + return tmpl("index", entries=entries, subdir=subdir, pathdef=hgweb_mod.makebreadcrumb('/' + subdir, self.prefix), sortcolumn=sortcolumn, descending=descending,