# HG changeset patch # User Martin von Zweigbergk # Date 2018-04-04 16:41:18 # Node ID 956260cbc5642ce4d04cc2645304185a655dec4f # Parent 6407507e12b6ec35ebeab58986fd786f12367e52 hgweb: use revsymbol() for creating context from changeid These seem to be for looking up a revision that can come from the user, so revsymbol() is the right method to call (0194dac7 has more information about my plans for repo[x]). Differential Revision: https://phab.mercurial-scm.org/D3075 diff --git a/mercurial/hgweb/webutil.py b/mercurial/hgweb/webutil.py --- a/mercurial/hgweb/webutil.py +++ b/mercurial/hgweb/webutil.py @@ -32,6 +32,7 @@ from .. import ( patch, pathutil, pycompat, + scmutil, templatefilters, templatekw, ui as uimod, @@ -303,7 +304,7 @@ def changectx(repo, req): if ipos != -1: changeid = changeid[(ipos + 1):] - return repo[changeid] + return scmutil.revsymbol(repo, changeid) def basechangectx(repo, req): if 'node' in req.qsparams: @@ -311,7 +312,7 @@ def basechangectx(repo, req): ipos = changeid.find(':') if ipos != -1: changeid = changeid[:ipos] - return repo[changeid] + return scmutil.revsymbol(repo, changeid) return None @@ -326,7 +327,7 @@ def filectx(repo, req): else: raise ErrorResponse(HTTP_NOT_FOUND, 'node or filenode not given') try: - fctx = repo[changeid][path] + fctx = scmutil.revsymbol(repo, changeid)[path] except error.RepoError: fctx = repo.filectx(path, fileid=changeid)