# HG changeset patch # User Gregory Szorc # Date 1423284286 28800 # Node ID ef06e2b1a3d12b4022b0448259640bbff60cb7b9 # Parent 5fbb5217a6c8709d7337e620e47411264142d383 webcommands: document "tags" web command diff -r 5fbb5217a6c8 -r ef06e2b1a3d1 mercurial/hgweb/webcommands.py --- 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)