Details
Details
- Reviewers
pulkit - Group Reviewers
hg-reviewers - Commits
- rHG0cacd4df6eb0: webcommands: use pycompat.strkwargs as needed
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
( )
pulkit |
hg-reviewers |
Lint Skipped |
Unit Tests Skipped |
Path | Packages | |||
---|---|---|---|---|
M | mercurial/hgweb/webcommands.py (2 lines) |
return tmpl("manifest", | return tmpl("manifest", | ||||
symrev=symrev, | symrev=symrev, | ||||
path=abspath, | path=abspath, | ||||
up=webutil.up(abspath), | up=webutil.up(abspath), | ||||
upparity=next(parity), | upparity=next(parity), | ||||
fentries=filelist, | fentries=filelist, | ||||
dentries=dirlist, | dentries=dirlist, | ||||
archives=web.archivelist(hex(node)), | archives=web.archivelist(hex(node)), | ||||
**webutil.commonentry(web.repo, ctx)) | **pycompat.strkwargs(webutil.commonentry(web.repo, ctx))) | ||||
@webcommand('tags') | @webcommand('tags') | ||||
def tags(web, req, tmpl): | def tags(web, req, tmpl): | ||||
""" | """ | ||||
/tags | /tags | ||||
----- | ----- | ||||
Show information about tags. | Show information about tags. |