Mercurial > hg
changeset 24084:ef06e2b1a3d1
webcommands: document "tags" web command
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Fri, 06 Feb 2015 20:44:46 -0800 |
parents | 5fbb5217a6c8 |
children | 0bf61eae67ab |
files | mercurial/hgweb/webcommands.py |
diffstat | 1 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/hgweb/webcommands.py Fri Feb 06 20:43:54 2015 -0800 +++ b/mercurial/hgweb/webcommands.py Fri Feb 06 20:44:46 2015 -0800 @@ -497,6 +497,16 @@ @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)