Submitter | Gregory Szorc |
---|---|
Date | Feb. 7, 2015, 7:15 a.m. |
Message ID | <4e057c4c9c9efc4f5e5b.1423293347@gps-mbp.local> |
Download | mbox | patch |
Permalink | /patch/7747/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/hgweb/webcommands.py b/mercurial/hgweb/webcommands.py --- a/mercurial/hgweb/webcommands.py +++ b/mercurial/hgweb/webcommands.py @@ -499,8 +499,18 @@ def manifest(web, req, tmpl): branches=webutil.nodebranchdict(web.repo, ctx)) @webcommand('tags') def tags(web, req, tmpl): + """ + /tags + ----- + + Show information about tags. + + No arguments are accepted. + + The ``tags`` template is rendered. + """ i = list(reversed(web.repo.tagslist())) parity = paritygen(web.stripecount) def entries(notip, latestonly, **map):